We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88aa608 commit 1f462e5Copy full SHA for 1f462e5
pyomo/solvers/plugins/solvers/GAMS.py
@@ -747,18 +747,6 @@ def _get_version(self):
747
)
748
return _extract_version(results.stdout)
749
750
- @staticmethod
751
- def _parse_special_values(value):
752
- if value == 1.0e300 or value == 2.0e300:
753
- return float('nan')
754
- if value == 3.0e300:
755
- return float('inf')
756
- if value == 4.0e300:
757
- return -float('inf')
758
- if value == 5.0e300:
759
- return sys.float_info.epsilon
760
- return value
761
-
762
def _rewrite_path_win8p3(self, path):
763
"""
764
Return the 8.3 short path on Windows; unchanged elsewhere.
0 commit comments