-
Notifications
You must be signed in to change notification settings - Fork 28
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
Comment of [csk-1] a tiny bit inadequate #122
Comments
what is inadequate about it |
You probably read the comment just after I posted it without the explanation just to check whether I got the trick with the back quotes correct to keep the indentations. When I saw it worked, I edited the post further. You were too fast this time :-) |
Werner, is it that you want this instead? "If a occurrent-part-of b then if there's a time at which a is an instance of process then there's a time at which b is an instance of process [csk-1]" I think many axioms' comments don't make that sort of temporal existential quantification stuff explicit. EDIT: Just saw your edit. |
Also too fast! :-) |
Stating the axiom in that way, IMO, will confuse things more than clarify. That there are two temporal regions is irrelevant and distracting. Occurrents don't change type. The (:exists(t) (instance-of instance class t)) pattern is the only way to check a type, if there's no specific time that is relevant. Maybe if I did it again I would use a time-independent instance-of predicate. I suppose it could also be rewritten as
As it happens the snippet is generated by a macro. In the source code it is
What you see is the macro expansion. The macro expands differently if called between two temporal regions because we don't have to introduce a new temporal region. The macro is used in a few places, so it would take work to make sure this rewrite is done only when appropriate since I'd have to review each use.
Expands to
|
The third line would then have a condition without a consequence.
then it is indeed better (to my taste at least) because transformation to CNF does not change the semantics as no skolems ought to be generated.
You mean only for occurrents, I hope. Doing it also for continuants would be a sin and I would toss BFO in the garbage. |
Yes of course. I resisted using both (instance-of x ) and (instance-of x t) because I thought it clearer if there were not predicate names meant different things depending on their arity. That's something that I might reconsider. We can keep this issue open as a reminder that it would be nice to do the universal vs existential for of this and similar axioms |
Good. One might also consider to do that for all relations which have at least one continuant as argument. |
To reflect the axiom accurately, the comment should be: If a occurrent-part-of b then if a is an instance of process at some time, then b is an instance of process at some time.
Although for both instantiation assertions the existentially quantified variable 't' is used, FOL does not require these variables to have the same individual as values. The comment reflects nevertheless a fact in light of (at least) [ayr-1] which states: No occurrent changes type during its existence.
The text was updated successfully, but these errors were encountered: