Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FMB is returning partial/incorrect result #621

Open
mmaroti opened this issue Nov 11, 2024 · 1 comment
Open

FMB is returning partial/incorrect result #621

mmaroti opened this issue Nov 11, 2024 · 1 comment

Comments

@mmaroti
Copy link

mmaroti commented Nov 11, 2024

Just searching for all 2-element poset and encoding the problem as

tff(declared_dom, type, dom:$tType).
tff(declare_dom0, type, dom0: dom).
tff(declare_dom1, type, dom1: dom).
tff(dom_elements, axiom, ![X:dom]: (X=dom0 | X=dom1)).
tff(dom_distinct, axiom, $distinct(dom0, dom1)).
tff(declare_rel, type, rel: (dom * dom) > $o).
tff(axiom6, axiom, ![X:dom]: rel(X,X)).
tff(axiom7, axiom, ![X:dom, Y:dom, Z:dom]: ((rel(X,Y) & rel(Y,Z)) => rel(X,Z))).

Running this with vampire -sa fmb gives the result with :

tff(predicate_rel,axiom,
           rel(dom0,dom0)
%         rel(dom0,dom1) undefined in model
         & ~rel(dom1,dom0)
%         rel(dom1,dom1) undefined in model
).

This is not a model, as the undefined values cannot be arbitrarily set to any value. How can I force the output relation to be fully defined?

@quickbeam123
Copy link
Collaborator

Thanks for the report, Miklos!

Restoring the values of eliminated symbols is an open issue that we plan to resolve within the next couple of months. (We will probably we able to point you to workarounds sooner, but current master has a small issue with model printing in general. Please stay tuned!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants