From: Joachim S. <jsc...@co...> - 2021-05-27 22:19:58
|
On 27/05/2021 14:27, Doug Edmunds wrote: > System Win10 x 64 > Ecliple-CLP Version 7.0 #54 (x86_64_nt), > > > Bug: error msg (ambiguity) if code loads ic_symbolic then ic_global, > but no error if ic_symbolic loads ic_global. In the first case, ic_global is loaded and imported into your user module. In the second case, ic_global is loaded, but only used internally by ic_symbolic. It is not imported into your user module, therefore no ambiguity. Ambiguities can always be resolved by explicit import-from or by using qualified calls, outlined here http://www.eclipseclp.org/doc/userman/umsroot041.html#sec112 -- Joachim |