Open alldefector opened 8 years ago
This rule
@weight(f) tag(w, "GROOVY") :- features(w, f).
is compiled as if it's
@weight(f) tag(w, t) :- features(w, f).
This is pretty nasty.. can the following be a workaround?
@weight(f) tag(w, t) :- features(w, f), t = "GROOVY".
Yes, that works.
This rule
is compiled as if it's