So I have two errors which do not make sense to me as of now. The first one being the use :- dynamic Name/Arity
warning and the other one being the second two warnings below. Can anyone elaborate these for me?
Many thanks!
So I have two errors which do not make sense to me as of now. The first one being the use :- dynamic Name/Arity
warning and the other one being the second two warnings below. Can anyone elaborate these for me?
Many thanks!
As commented by the user
false
:The suggestion for using a
dynamic
declaration is conditional: If these are defined at runtime usingassert/1
. That means, only then ... The other errors tells you that something went wrong in the first clause offind_identify/3
. Evidentlyfind_link/4
andchart_map/2
are not defined. You somehow added or omitted extra arguments. Or misspelled it.