(WIP) add more low-level segment stuff

This commit is contained in:
Christopher Mosher
2013-12-12 17:05:33 -05:00
parent 654d0510c8
commit b6624094be
13 changed files with 459 additions and 58 deletions

View File

@@ -17,6 +17,8 @@ TransNetwork::TransNetwork(std::istream& in) {
this->transes.insert(std::make_shared<Trans>(this->segs.getOrAdd(c1), this->segs.getOrAdd(gate), this->segs.getOrAdd(c2)));
in >> c1 >> gate >> c2;
}
this->segs.initCommon();
}
TransNetwork::~TransNetwork() {