move modules to as early as possible

This commit is contained in:
Vítor Santos Costa 2014-10-06 00:01:25 +01:00
parent 8c87eabb22
commit 0c4f846c0e

View File

@ -118,6 +118,8 @@ otherwise.
:- bootstrap('os.yap').
:- bootstrap('absf.yap').
:- [ 'directives.yap',
'utils.yap',
'control.yap',
@ -127,6 +129,10 @@ otherwise.
:- compile_expressions.
:- [ 'preds.yap',
'modules.yap'
].
:- [
% lists is often used.
'yio.yap',
@ -136,11 +142,9 @@ otherwise.
'grammar.yap',
'ground.yap',
'listing.yap',
'preds.yap',
'arithpreds.yap',
% modules must be after preds, otherwise we will have trouble
% with meta-predicate expansion being invoked
'modules.yap',
% must follow grammar
'eval.yap',
'signals.yap',