Add axioms for order of symbolic constants

This commit is contained in:
Patrick Lühne 2020-02-05 20:19:22 +01:00
parent ca5cca8701
commit f6f423e307
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 28 additions and 0 deletions

View File

@ -175,6 +175,7 @@ where
let predicate_declarations = context.predicate_declarations.borrow();
let function_declarations = context.function_declarations.borrow();
let input_constant_declaration_domains = context.input_constant_declaration_domains.borrow();
let completed_definitions = predicate_declarations.iter()
// Dont perform completion for any input predicate
.filter(|x| !context.input_predicate_declarations.borrow().contains(*x))
@ -246,6 +247,33 @@ where
&context));
}
}
let symbolic_constants = function_declarations.iter().filter(
|x| !input_constant_declaration_domains.contains_key(*x));
let mut last_symbolic_constant: Option<std::rc::Rc<foliage::FunctionDeclaration>> = None;
for (i, symbolic_constant) in symbolic_constants.enumerate()
{
// Order axioms are only necessary with two or more symbolic constants
if i == 1
{
println!("% axioms for order of symbolic constants")
}
if symbolic_constant.arity > 0
{
return Err(crate::Error::new_logic("unexpected n-ary function declaration"));
}
if let Some(last_symbolic_constant) = last_symbolic_constant
{
println!("tff(symbolic_constant_order, axiom, p__less__({}, {})).",
last_symbolic_constant.name, symbolic_constant.name);
}
last_symbolic_constant = Some(std::rc::Rc::clone(symbolic_constant));
}
}
for (i, (predicate_declaration, completed_definition)) in completed_definitions.enumerate()