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
The compiler depends on some library modules like lists.pl, which are then frozen: users are not allowed to load their own definitions for those modules from a toplevel.
Possible solutions:
introduce more complex module namespaces (so that two lists modules can coexists)
rename lists to sys_lists and define another lists.pl module that reexports all sys_lists predicates (easier but LPdoc documentation may look weird).
The text was updated successfully, but these errors were encountered:
The compiler depends on some library modules like
lists.pl
, which are then frozen: users are not allowed to load their own definitions for those modules from a toplevel.Possible solutions:
lists
modules can coexists)lists
tosys_lists
and define anotherlists.pl
module that reexports allsys_lists
predicates (easier but LPdoc documentation may look weird).The text was updated successfully, but these errors were encountered: