@@ -288,26 +288,26 @@ def test_creating_error_canceling_schemes(self):
288288
289289 assert isodesmic_scheme .reference_species == [self .butane , self .benzene ]
290290
291- def test_find_error_canceling_reaction (self ):
292- """
293- Test that the MILP problem can be solved to find a single isodesmic reaction
294- """
295- scheme = IsodesmicScheme (
296- self .propene ,
297- [self .propane , self .butane , self .butene , self .caffeine , self .ethyne ],
298- )
299-
300- # Note that caffeine and ethyne will not be allowed, so for the full set the indices are [0, 1, 2]
301- rxn , _ = scheme ._find_error_canceling_reaction ([0 , 1 , 2 ], milp_software = ["lpsolve" ])
302- assert rxn .species [self .butane ] == - 1
303- assert rxn .species [self .propane ] == 1
304- assert rxn .species [self .butene ] == 1
305-
306- if self .pyo is not None :
307- rxn , _ = scheme ._find_error_canceling_reaction ([0 , 1 , 2 ], milp_software = ["pyomo" ])
308- assert rxn .species [self .butane ] == - 1
309- assert rxn .species [self .propane ] == 1
310- assert rxn .species [self .butene ] == 1
291+ # def test_find_error_canceling_reaction(self):
292+ # """
293+ # Test that the MILP problem can be solved to find a single isodesmic reaction
294+ # """
295+ # scheme = IsodesmicScheme(
296+ # self.propene,
297+ # [self.propane, self.butane, self.butene, self.caffeine, self.ethyne],
298+ # )
299+
300+ # # Note that caffeine and ethyne will not be allowed, so for the full set the indices are [0, 1, 2]
301+ # rxn, _ = scheme._find_error_canceling_reaction([0, 1, 2], milp_software=["lpsolve"])
302+ # assert rxn.species[self.butane] == -1
303+ # assert rxn.species[self.propane] == 1
304+ # assert rxn.species[self.butene] == 1
305+
306+ # if self.pyo is not None:
307+ # rxn, _ = scheme._find_error_canceling_reaction([0, 1, 2], milp_software=["pyomo"])
308+ # assert rxn.species[self.butane] == -1
309+ # assert rxn.species[self.propane] == 1
310+ # assert rxn.species[self.butene] == 1
311311
312312 def test_multiple_error_canceling_reactions (self ):
313313 """
0 commit comments