This repository has been archived by the owner on Sep 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircuits.html
35 lines (31 loc) · 1.68 KB
/
circuits.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<pre>
<!--- Autogenerated, do not edit. -->
Usage: circuits [options] PROJECT
Computes the circuits of a cone.
Input Files:
PROJECT.mat A matrix (compulsory).
PROJECT.sign The sign constraints of the variables ('1' means
non-negative, '0' means a free variable, and '2' means
both non-negative and non-positive).
It is optional, and the default is both.
PROJECT.rel The relations on the matrix rows ('<','>','=').
It is optional and the default is all '='.
The mat must be given with this file.
Output Files:
PROJECT.cir The circuits of the cone.
PROJECT.qfree A basis for the linear subspace of the cone.
If this file does not exist then the linear subspace
is trivial.
Options:
-p, --precision=PREC Select PREC as the integer arithmetic precision.
PREC is one of the following: `64' (default),
`32', and `arbitrary' (only `arb` is needed).
-m, --mat Use the Matrix algorithm (default for 32 and 64).
-s, --support Use the Support algorithm (default for arbitrary).
-o, --order=ORDERING Set ORDERING as the ordering in which the columns
are chosen. The possible orderings are `maxinter',
`minindex', `maxcutoff' (default), and `mincutoff'.
-f, --output-freq=n Set the frequency of output (default is 1000).
-q, --quiet Do not output anything to the screen.
-h, --help Display this help and exit.
</pre>