remove problog atom initialization
This commit is contained in:
parent
61d624e416
commit
09accc834c
@ -538,7 +538,8 @@ problog_dir(PD):- problog_path(PD).
|
|||||||
%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
init_global_params :-
|
init_global_params :-
|
||||||
grow_atom_table(1000000), % this will reserve us some memory, there are cases where you might need more
|
% vsc: removed this, it is major league weird...
|
||||||
|
% grow_atom_table(1000000), % this will reserve us some memory, there are cases where you might need more
|
||||||
|
|
||||||
%%%%%%%%%%%%
|
%%%%%%%%%%%%
|
||||||
% working directory: all the temporary and output files will be located there
|
% working directory: all the temporary and output files will be located there
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
'$init_debugger' :-
|
'$init_debugger' :-
|
||||||
nb_setval('$trace',off),
|
nb_setval('$trace',off),
|
||||||
nb_setval('$if_skip_mode',no_skip),
|
nb_setval('$if_skip_mode',no_skip),
|
||||||
b_setval('$spy_glist',[]),
|
nb_setval('$spy_glist',[]),
|
||||||
nb_setval('$spy_gn',1),
|
nb_setval('$spy_gn',1),
|
||||||
nb_setval('$debug_run',off),
|
nb_setval('$debug_run',off),
|
||||||
nb_setval('$debug_jump',off).
|
nb_setval('$debug_jump',off).
|
||||||
@ -192,6 +192,7 @@ trace :-
|
|||||||
'$meta_creep'.
|
'$meta_creep'.
|
||||||
|
|
||||||
'$do_trace' :-
|
'$do_trace' :-
|
||||||
|
'$init_debugger',
|
||||||
'$nb_getval'('$trace', on, fail), !.
|
'$nb_getval'('$trace', on, fail), !.
|
||||||
'$do_trace' :-
|
'$do_trace' :-
|
||||||
nb_setval('$trace',on),
|
nb_setval('$trace',on),
|
||||||
|
Reference in New Issue
Block a user