|
7 | 7 | ## |
8 | 8 | ############################################################################# |
9 | 9 |
|
10 | | -ReadPackage( "HeLP", "lib/HeLP_internal_functions_no_solving.gi" ); |
| 10 | +ReadPackage( "HeLP", "lib/HeLP_internal_no_solving.gi" ); |
11 | 11 | ReadPackage( "HeLP", "lib/HeLP_no_solving.gi" ); |
12 | 12 |
|
13 | | -if not TestPackageAvailability("4ti2Interface") = true and not TestPackageAvailability("NormalizInterface") = true then |
14 | | - Print("WARNING: Neither 4ti2Interface nor NormalizInterface could be loaded. No functions which need to solve a system of inquealities will work. Please install one of the solvers in case you want to use these.\n"); |
15 | | -elif not TestPackageAvailability("4ti2Interface") = true and TestPackageAvailability("NormalizInterface") = true then |
16 | | - Print("Only NormalizInterface could be loaded, so normaliz will be used as a solver. \n"); |
17 | | - ReadPackage( "HeLP", "lib/HeLP_internal_functions_solving_normaliz.gi"); |
18 | | - ReadPackage( "HeLP", "lib/HeLP_solving.gi"); |
19 | | -elif TestPackageAvailability("4ti2Interface") = true and not TestPackageAvailability("NormalizInterface") = true then |
20 | | - Print("Only 4ti2Interface could be loaded, so 4ti2 will be used as a solver. \n"); |
21 | | - ReadPackage( "HeLP", "lib/HeLP_internal_functions_solving_4ti2.gi"); |
22 | | - ReadPackage( "HeLP", "lib/HeLP_solving.gi"); |
23 | | -elif TestPackageAvailability("4ti2Interface") = true and TestPackageAvailability("NormalizInterface") = true then |
24 | | - ReadPackage( "HeLP", "lib/HeLP_internal_functions_solving_two_solvers.gi"); |
25 | | - ReadPackage( "HeLP", "lib/HeLP_solving.gi"); |
26 | | -fi; |
| 13 | +ReadPackage( "HeLP", "lib/HeLP_internal_solving.gi" ); |
| 14 | +ReadPackage( "HeLP", "lib/HeLP_solving.gi" ); |
| 15 | + |
| 16 | + |
27 | 17 |
|
0 commit comments