[MATLAB] Moved constants to immutable properties

for unit tests
This commit is contained in:
ssun30 2025-02-12 21:53:14 -05:00
parent 8c0f9bca23
commit 687236838a
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,9 @@ classdef ctTestKinetics < matlab.unittest.TestCase
properties
phase
end
properties (SetAccess = immutable)
rtol = 1e-6;
atol = 1e-8;
end

View File

@ -2,6 +2,9 @@ classdef ctTestThermo < matlab.unittest.TestCase
properties
phase
end
properties (SetAccess = immutable)
rtol = 1e-6;
atol = 1e-8;
end