You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.
Hi, I've just started trying alchemy-2 with the soc-net example in the tutorial (http://alchemy.cs.washington.edu/mlns/tutorial/soc-net/smoking.mln),
but learnwts crashes after complaining "UNRECOVERABLE ERROR after parsing smoking.mln".
It looks like the idx > 0 part of src/logic/clause.h causes the problem.
I looked at this today and I think I got a little too eager about "fixing" null pointer references a while back. I will be testing this evening and then get back to you. I think your solution is close to the right one though.
Hi, I've just started trying alchemy-2 with the soc-net example in the tutorial (http://alchemy.cs.washington.edu/mlns/tutorial/soc-net/smoking.mln),
but learnwts crashes after complaining "UNRECOVERABLE ERROR after parsing smoking.mln".
It looks like the
idx > 0
part of src/logic/clause.h causes the problem.Replacing the expression with
idx >= 0
seems to fix the problem.Is this a correct fix, or am I missing something?
The text was updated successfully, but these errors were encountered: