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

TPTP/FOF transformation still incomplete #50

Open
arademaker opened this issue Jul 12, 2019 · 2 comments
Open

TPTP/FOF transformation still incomplete #50

arademaker opened this issue Jul 12, 2019 · 2 comments

Comments

@arademaker
Copy link
Contributor

arademaker commented Jul 12, 2019

(<=>
   (partition ?CLASS @ROW)
   (and
      (exhaustiveDecomposition ?CLASS @ROW)
      (disjointDecomposition ?CLASS @ROW)))

it is generating only one axiom but it should expand the row variable for many arities:

% f: (<=> (partition ?CLASS @ROW) (and (exhaustiveDecomposition ?CLASS @ROW) (disjointDecomposition ?CLASS @ROW)))
% 102 of 34588 from file /Users/ar/workspace/sumo/Merge.kif at line 645
% not higher order
fof(kb_SUMO_89,axiom,(( ( ! [V__ROW1,V__CLASS] : 
  ((s__instance(V__ROW1,s__Class) & s__instance(V__CLASS,s__Class)) => 
    (s__partition_2(V__CLASS,V__ROW1) <=> (s__exhaustiveDecomposition_2(V__CLASS,V__ROW1) 
   & s__disjointDecomposition_2(V__CLASS,V__ROW1)))) ) ))).
@arademaker
Copy link
Contributor Author

BTW, the above version of the axiom is not commited yet, but I think it is clear than the current version in the repo. I want to make clear that a particular class is in focus here:

(<=>
   (partition @ROW)
   (and
      (exhaustiveDecomposition @ROW)
      (disjointDecomposition @ROW)))

@apease
Copy link
Contributor

apease commented Jul 12, 2019

I agree that your new version is better -

(<=>
(partition ?CLASS @Row)
(and
(exhaustiveDecomposition ?CLASS @Row)
(disjointDecomposition ?CLASS @Row)))

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