Skip to content
Snippets Groups Projects
Verified Commit 154bec03 authored by Jonas Zohren's avatar Jonas Zohren :speech_balloon:
Browse files

feat: Use emoji to mark sat and unsat leafes

parent 8105cbd5
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,11 @@ export function dpllAlgoStepNodesToTree(
' "| N' +
myCounter +
'["' +
termString +
(startNode.stepTaken === "Unsatisfiable"
? ""
: startNode.stepTaken === "Satisfiable"
? ""
: termString) +
'"]';
const childrenArrows = startNode.children
.map((c) => dpllAlgoStepNodesToTree(c, termString, myCounter))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment