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 c51f4d5 commit 2a928d4Copy full SHA for 2a928d4
burnman/classes/polytope.py
@@ -18,17 +18,13 @@
18
19
from ..utils.math import independent_row_indices
20
21
-cdd_gmp_loaded = False
22
23
try:
24
cdd_fraction = importlib.import_module("cdd.gmp")
25
cdd_gmp_loaded = True
26
-except ImportError as err:
+except ImportError:
27
cdd_fraction = importlib.import_module("cdd")
28
- print(
29
- f"Warning: {err}. Only pycddlib-standalone is installed."
30
- "For precise fractional representations of polytopes, please install pycddlib."
31
- )
+ cdd_gmp_loaded = False
32
33
34
class SimplexGrid(object):
0 commit comments