2?- use_module(library(random)).    3?- use_module(library(system)).    4?- use_module(library(lists)).    5
    6?- compile(dynamics).    7?- consult(dctg).    8?- consult(parameters_P).    9?- compile(operators).   10?- consult(dctg_pp).   11?- compile(utils).   12
   13?- dctg_file_P(FileDCTG),grammar(FileDCTG), make_grammar_table.   14?- tell('compile_file.pl'),     % fast: new
   15	write('
   16?- use_module(library(lists)).
   17        '),
   18        nl,
   19	listing,
   20	told.   21
   22?- compile('ccs_utils').   23?- compile('dctg_gen').   24?- compile('dctg_reprod').   25?- compile('dctg_utils').   26?- compile('generate').   27?- compile('gp_engine').   28?- compile('lamarckian').   29?- compile('evaluation').   30?- compile('file_stats').   31
   32% following must follow 'parameters_P' above.
   33
   34?- fitness_func_P(File), compile(File). 
   35
   36?- fast:compile('compile_file.pl').   37?- clean_up.