This commit is contained in:
Deinerovych 2024-11-07 14:54:28 +01:00
parent bbb91099f3
commit 1c39011d3f
2 changed files with 1 additions and 0 deletions

BIN
cv7/program Executable file

Binary file not shown.

View File

@ -76,6 +76,7 @@ void run_expert_system(Node *node) {
}
}
void free_tree(Node *node) {
if (node) {
free_tree(node->yes);