Searched refs:undoLog (Results 1 – 2 of 2) sorted by relevance
95 undoLog.push_back(UndoLogEntry::RemoveLastConstraint); in addZeroRow()1068 undoLog.push_back(UndoLogEntry::UnmarkEmpty); in markEmpty()1105 unsigned SimplexBase::getSnapshot() const { return undoLog.size(); } in getSnapshot()1115 undoLog.emplace_back(UndoLogEntry::RestoreBasis); in getSnapshotBasis()1116 return undoLog.size() - 1; in getSnapshotBasis()1259 while (undoLog.size() > snapshot) { in rollback()1260 undo(undoLog.back()); in rollback()1261 undoLog.pop_back(); in rollback()1298 undoLog.insert(undoLog.end(), count, UndoLogEntry::RemoveLastVariable); in appendVariable()1391 undoLog.emplace_back(UndoLogEntry::UnmarkLastRedundant); in markRowRedundant()
346 SmallVector<UndoLogEntry, 8> undoLog; variable