fauton
Version:
A library to test any finite automaton with arbitrary alphabets
17 lines (16 loc) • 627 B
TypeScript
import { FiniteAutomatonTestInfo } from '../types';
export declare function generateAggregateMessage(faLabel: string, faDescription: string | undefined, finiteAutomatonTestInfo: FiniteAutomatonTestInfo): {
values: {
totalCorrect: number;
totalIncorrect: number;
totalStrings: number;
correctPercentage: number;
incorrectPercentage: number;
falseNegativesPercentage: number;
falsePositivesPercentage: number;
truePositivesPercentage: number;
trueNegativesPercentage: number;
};
withColors: string;
withoutColors: string;
};