File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,6 @@ class Frames_t {
166166 size_t size () const { return count; }
167167
168168 void set_from_front (int32_t index, const Num &num) {
169- GENSYM_DBG (index);
170169 assert (index >= 0 && index < count && " Index out of bounds" );
171170 stack_ptr[index] = num;
172171 }
Original file line number Diff line number Diff line change @@ -499,7 +499,6 @@ inline std::monostate NodeBox::fillSnapshotNode(Snapshot_t snapshot) {
499499}
500500
501501inline std::monostate NodeBox::fillFinishedNode () {
502- GENSYM_DBG (" Filling with a Finished Node" );
503502 if (this ->isUnexplored ()) {
504503 node = std::make_unique<Finished>();
505504 } else {
@@ -512,11 +511,6 @@ inline std::monostate NodeBox::fillFailedNode() {
512511 if (this ->isUnexplored ()) {
513512 node = std::make_unique<Failed>();
514513 } else {
515- if (auto if_else_node = dynamic_cast <IfElseNode *>(node.get ())) {
516- GENSYM_DBG (typeid (*if_else_node).name ());
517- } else if (auto finished_node = dynamic_cast <Finished *>(node.get ())) {
518- GENSYM_DBG (typeid (*finished_node).name ());
519- }
520514 assert (dynamic_cast <Failed *>(node.get ()) != nullptr );
521515 }
522516 return std::monostate ();
You can’t perform that action at this time.
0 commit comments