1
Fork 0
mirror of https://github.com/Jaxan/hybrid-ads.git synced 2025-06-06 08:27:45 +02:00

Fixes bug in parser

This commit is contained in:
Joshua Moerman 2015-10-13 14:27:16 +02:00
parent 388e278b0b
commit 0d24dcf137

View file

@ -44,7 +44,7 @@ mealy read_mealy_from_txt(std::istream & in) {
v.resize(max_input);
v[i] = mealy::edge(to, o);
assert(defined(m, to, i));
assert(defined(m, from, i));
}
m.graph_size = max_state;