我面临的“问题”是,如果我使用SWI-Prolog模块系统,定义模块并在其他模块中使用它们,如果导入模块更改SWI-Prolog不接受它在加载导入模块时考虑。例如:
% file topmod.pl
:- module(topmod, [thetop/0]).
:- use_module(bottommod).
thetop :-
thebottom(S),
format('This is the top~nAnd this is ~w~n', [S]).
% file bottommod.pl
:- module(bottommod, [thebottom/1]).
thebottom('the bottom').
如果我现在加载它们:
?- [thetop].
% bottommod compiled into bottommod 0.00 sec, 2 clauses
% topmod compiled into topmod 0.00 sec, 6 clauses
true.
?- thetop.
This is the top
And this is the bottom
true.
如果我现在更改文件:
% file bottommod.pl changes
- thebottom('the bottom').
+ thebottom('the foobar').
?- [thetop].
% topmod compiled into topmod 0.00 sec, 1 clauses
true.
?- thetop.
This is the top
And this is the bottom
true.
?- module(bottommod).
true.
?- listing.
thebottom('the bottom').
true.
除了使用consult
之外,我应该如何强制Prolog查阅所有导入的模块及其导入的模块?
答案 0 :(得分:7)
您可以使用SWI-Prolog make/0
谓词重新加载自上次加载以来的所有已修改源文件。