tweak colors
This commit is contained in:
parent
77ef7b87cd
commit
e762d6be22
@ -515,6 +515,7 @@ LiftedCircuit::smoothCircuit (CircuitNode* node)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case CircuitNodeType::SET_OR_NODE: {
|
case CircuitNodeType::SET_OR_NODE: {
|
||||||
|
// TODO
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -541,10 +542,6 @@ LiftedCircuit::smoothCircuit (CircuitNode* node)
|
|||||||
propagatingLids.insert (node->clauses()[0].literals()[0].lid());
|
propagatingLids.insert (node->clauses()[0].literals()[0].lid());
|
||||||
}
|
}
|
||||||
|
|
||||||
// case CircuitNodeType::SMOOTH_NODE:
|
|
||||||
// case CircuitNodeType::TRUE_NODE:
|
|
||||||
// case CircuitNodeType::COMPILATION_FAILED_NODE:
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -720,12 +717,12 @@ LiftedCircuit::exportToGraphViz (CircuitNode* node, ofstream& os)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case LEAF_NODE: {
|
case LEAF_NODE: {
|
||||||
printClauses (node, os);
|
printClauses (node, os, "style=filled,fillcolor=palegreen,");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case SMOOTH_NODE: {
|
case SMOOTH_NODE: {
|
||||||
printClauses (node, os, "style=filled,fillcolor=chartreuse,");
|
printClauses (node, os, "style=filled,fillcolor=lightblue,");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -737,7 +734,7 @@ LiftedCircuit::exportToGraphViz (CircuitNode* node, ofstream& os)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case COMPILATION_FAILED_NODE: {
|
case COMPILATION_FAILED_NODE: {
|
||||||
printClauses (node, os, "style=filled,fillcolor=brown1,");
|
printClauses (node, os, "style=filled,fillcolor=salmon,");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user