-
Notifications
You must be signed in to change notification settings - Fork 1
Data format (input file)
Jean-Francois Baffier edited this page Jun 5, 2017
·
4 revisions
The general format of the input is a header followed by a CSV list (Comma Separated Values).
HEADER
n 64
p 3
b 2
/HEADER
7,7
9.39297,74.9533
11.2658,42.2175
11.3224,48.2444
15.3701,49.9207
16.7112,40.7553
.
.
.
-
n 64
indicates that the expected number of elements in the data input is 64 -
p 3
indicates that the stack used will be a compressed one with a space order of 3 elements -
b 2
indicates that the top elements of the stack can be accessed directly
p
and b
are optional. By default b
is set to 0. If p
is not present the stack used will be a classical one (no compression).
Two instances for TestRun and one for UpperHull can be found in their respective examples folder.