Column 0: C
Column 1: A
Column 2: B
Column 3: IN1
Column 4: 1_A
Column 5: 1_B
Column 6: 1_C
Column 7: 1_IN1
Would it be trivial to ASCII sort the order the nodes are reported
in? Like so?
1_A
1_B
1_C
1_IN1
A
B
C
IN1
That would make other/future implementations easier to test?
In my cursory glance through the .cpp code I don't see how C appears
before A in -vis. I suspect it's in here?:
NodeList.cpp
istream& operator >>(istream &in, NodeList &nl)
Thanks,
j
./ChemChains \
-ilogic inFiles/CChain/logic/sampleNet.txt \
-ispecs inFiles/CChain/specs/sampleSpecs.txt \
-vis myFirstSimulation.txt -A -v
Do you recall how/why Node C ends up as 0 while Node A (the first in
the config file) ends up as 1? No biggie, just curious. My cpp skills
and insufficient to see the answer to that question at a glance. :)
I guess I'll have the key at the top be mandatory for all
implementations and the test harness could re-sort the output of each
implementation for comparison against other outputs.
j