Skip to content

Commit cfaec9c

Browse files
committed
Removal of matrix_out as this is now handled in the python logging system
1 parent 0e4b6c0 commit cfaec9c

4 files changed

Lines changed: 1 addition & 12 deletions

File tree

CodeEntropy/config/arg_config_manager.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@
5353
"help": "Name of the file where the output will be written",
5454
"default": "output_file.json",
5555
},
56-
"matrix_out": {
57-
"type": str,
58-
"help": "Name of the file where certain matrices will be written",
59-
"default": None,
60-
},
6156
"force_partitioning": {"type": float, "help": "Force partitioning", "default": 0.5},
6257
"water_entropy": {
6358
"type": bool,

config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ run1:
1010
temperature:
1111
verbose:
1212
thread:
13-
output_file:
14-
matrix_output:
13+
output_file:
1514
force_partitioning:
1615
water_entropy:

tests/test_EntropyFunctions/test_arg_config_manager.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def setup_file(self, mock_file):
6363
"verbose: False\n "
6464
"thread: 1\n "
6565
"output_file: 'output_file.json'\n "
66-
"matrix_out: null\n "
6766
"force_partitioning: 0.5\n "
6867
"water_entropy: False"
6968
).return_value
@@ -126,7 +125,6 @@ def test_invalid_run_config_type(self):
126125
verbose=False,
127126
thread=1,
128127
output_file="output_file.json",
129-
matrix_out=None,
130128
force_partitioning=0.5,
131129
water_entropy=False,
132130
),
@@ -270,7 +268,6 @@ def test_merge_configs(self):
270268
verbose=None,
271269
thread=None,
272270
output_file=None,
273-
matrix_out=None,
274271
force_partitioning=None,
275272
water_entropy=None,
276273
)
@@ -285,7 +282,6 @@ def test_merge_configs(self):
285282
"verbose": False,
286283
"thread": 1,
287284
"output_file": "output_file.json",
288-
"matrix_out": None,
289285
"force_partitioning": 0.5,
290286
"water_entropy": False,
291287
}

tests/test_EntropyFunctions/test_main_mcc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ def setup_file(self, mock_file):
5555
"verbose: False\n "
5656
"thread: 1\n "
5757
"output_file: 'output_file.json'\n "
58-
"matrix_out: null\n "
5958
"force_partitioning: 0.5\n "
6059
"water_entropy: False"
6160
).return_value

0 commit comments

Comments
 (0)