【发布时间】:2011-01-29 17:45:23
【问题描述】:
如何关闭 swi-prolog 中的警告。
Clauses of XXX/AA are not together in the source-file
很烦人。
【问题讨论】:
标签: swi-prolog
如何关闭 swi-prolog 中的警告。
Clauses of XXX/AA are not together in the source-file
很烦人。
【问题讨论】:
标签: swi-prolog
【讨论】:
您可以通过style_check 使用:-style_check(-discontiguous). 关闭这些警告。
例如,您也可以使用:-style_check(-singleton). 推迟有关单例变量的警告
【讨论】: