remove problog atom initialization

This commit is contained in:
Vítor Santos Costa 2013-12-08 23:16:22 +00:00
parent 61d624e416
commit 09accc834c
2 changed files with 6 additions and 4 deletions

View File

@ -538,7 +538,8 @@ problog_dir(PD):- problog_path(PD).
%%%%%%%%%%%%%%%%%%%%%%%%
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

View File

@ -28,7 +28,7 @@
'$init_debugger' :-
nb_setval('$trace',off),
nb_setval('$if_skip_mode',no_skip),
b_setval('$spy_glist',[]),
nb_setval('$spy_glist',[]),
nb_setval('$spy_gn',1),
nb_setval('$debug_run',off),
nb_setval('$debug_jump',off).
@ -182,7 +182,7 @@ nodebug :-
% remove any debugging info after an abort.
%
trace :-
trace :-
'$init_debugger',
'$nb_getval'('$trace', on, fail), !.
trace :-
@ -191,7 +191,8 @@ trace :-
print_message(informational,debug(trace)),
'$meta_creep'.
'$do_trace' :-
'$do_trace' :-
'$init_debugger',
'$nb_getval'('$trace', on, fail), !.
'$do_trace' :-
nb_setval('$trace',on),