Merge pull request 'feature/fix_recursive_rules' (#22) from feature/fix_recursive_rules into develop

Reviewed-on: #22
Este commit está contenido en:
Chris Cromer 2023-03-05 23:06:02 -03:00
commit 4d7ecf8258
Se han modificado 2 ficheros con 2 adiciones y 1 borrados

Ver fichero

@ -1,7 +1,7 @@
project('obelisk',
'c',
'cpp',
version : '1.0.1',
version : '1.0.2',
license : 'BSD-3-Clause',
default_options : [
'warning_level=3',

Ver fichero

@ -250,6 +250,7 @@ void obelisk::KnowledgeBase::checkRule(obelisk::Fact& fact)
auto updateFact = rule.getFact();
updateFact.setIsTrue(1.0);
updateFact.updateIsTrue(dbConnection_);
checkRule(updateFact);
}
}
}