|
D.4.15.10 setNmzOption
Procedure from library normaliz.lib (see normaliz_lib).
- Usage:
- setNmzOption(string s, int onoff);
- Purpose:
- If
onoff=1 the option s is activated, and
if onoff=0 it is deactivated.
The Normaliz options are accessible via the following names:
-s: supp
-v: triang
-p: hvect
-n: normal
-h: hilb
-d: dual
-a: allf
-c: control
-i: ignore
-e: errorcheck
Example:
| LIB "normaliz.lib";
setNmzOption("hilb",1);
==> 1
showNmzOptions();
==> -f -h -i
| See also:
showNmzOptions.
|