StoryTeller.Grammars.Sets.SetVerificationResult.Tabulate C# (CSharp) Method

Tabulate() public method

public Tabulate ( Counts counts ) : void
counts Counts
return void
        public void Tabulate(Counts counts)
        {
            counts.Rights += _matches.Count;
            counts.Wrongs += _missing.Count;
            counts.Wrongs += _extras.Count;
            counts.Wrongs += _wrongOrders.Count;
            
        }