nemo icon indicating copy to clipboard operation
nemo copied to clipboard

Constants dont produce facts when passed through the body

Open Laschoking opened this issue 10 months ago • 1 comments

The first example produces 1 fact, while the second example produces not facts, which is unexpected.

HeapAllocation_Type("<<main method array>>", "java.lang.String[]").
HeapAllocation_Type(?heap, ?type) :-
  ?heap = "<<main method array>>",
  ?type = "java.lang.String[]".

Laschoking avatar Mar 28 '24 14:03 Laschoking