- Ignore choose actions when determining Arachne trace length.

This commit is contained in:
ccremers 2004-08-27 19:15:24 +00:00
parent 939ece7500
commit 4420e06e4e

View File

@ -346,7 +346,8 @@ get_trace_length ()
if (sys->runs[run].protocol != INTRUDER) if (sys->runs[run].protocol != INTRUDER)
{ {
// Non-intruder run: count length // Non-intruder run: count length
length = length + sys->runs[run].length; // Subtract 'firstReal' to ignore chooses.
length = length + sys->runs[run].length - sys->runs[run].firstReal;
} }
run++; run++;
} }