user:portray_message(informational, imported(_Nr,_M1,_M2)) :- !.
user:portray_message(informational, loading(_Nr,_,_File)) :- !.
user:portray_message(informational, loaded(_Nr,_CompiledLoaded,_File,_Module,_TimeMS,_Bytes)) :- !.
user:portray_message(informational, foreign_resource(_Nr,_Status,_File,_Mod)) :- !.
user:portray_message(informational, chr_banner) :- !.
user:runtime_entry(start) :- go_cli.
accumulate_file_infos(File,Context,Infos) :-
get_additional_stats(Infos,Infos2),
sort(Infos2,SInfos), % infos is a list of the form Info-Value
assertz(individual_file_infos(File,Context,SInfos)).
Calls:
Name: assertz/1 |
|
Name: sort/2 |
|
Name: get_additional_stats/2 |
Module: prob_cli |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
accumulate_infos(Context,Infos) :- option(benchmark_info_csv_output(_,_)), % -bench_csv
file_loaded(_,File),
get_additional_infos(Infos,Infos2), % additional infos if -machine_stats provided
sort(Infos2,SInfos), % infos is a list of the form Info-Value
debug_println(19,assert_file_infos(File,Context,SInfos)),
assertz(individual_file_infos(File,Context,SInfos)), % store for later csv summary printing
fail.
accumulate_infos(Context,Infos) :- accumulate_infos_2(Context,Infos).
Calls:
Name: accumulate_infos_2/2 |
Module: prob_cli |
Name: fail |
|
Name: assertz/1 |
|
Name: debug_println/2 |
Module: foo_error |
Name: sort/2 |
|
Name: get_additional_infos/2 |
Module: prob_cli |
Name: file_loaded/2 |
dynamic predicate |
Name: option/1 |
dynamic predicate |
Called:
Name: cli_check_properties/1 |
Module: prob_cli |
Name: cli_check_goal/0 |
Module: prob_cli |
Name: cli_check_op_cache/1 |
Module: prob_cli |
Name: cli_wd_inv_proof/3 |
Module: prob_cli |
Name: cli_trans/5 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_start_model_check/3 |
Module: prob_cli |
Name: cli_wd_check/2 |
Module: prob_cli |
Name: load_spec_file/3 |
Module: prob_cli |
Name: cli_check_assertions/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_core_properties/1 |
Module: prob_cli |
accumulate_infos_2(_,[]).
accumulate_infos_2(Context,[Info|T]) :- get_info(Info,FF,Nr),
(number(Nr) -> Nr>0 ; add_internal_error('Can only accumulate numbers:',FF-Nr),fail), !,
(retract(accumulated_infos(Context,FF,OldNr)) ->true ; OldNr=0),
N1 is OldNr+Nr,
assertz(accumulated_infos(Context,FF,N1)),
accumulate_infos_2(Context,T).
accumulate_infos_2(Context,[_|T]) :- accumulate_infos_2(Context,T).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: assertz/1 |
|
Name: is/2 |
|
Name: =/2 |
|
Name: true |
|
Name: accumulated_infos/3 |
dynamic predicate |
Name: retract/1 |
|
Name: ->/3 |
|
Name: ! |
|
Name: fail |
|
Name: add_internal_error/2 |
Module: foo_error |
Name: >/2 |
|
Name: number/1 |
|
Name: get_info/3 |
Module: prob_cli |
Called:
Name: accumulate_infos/2 |
Module: prob_cli |
add_eval_result(R) :- retract(eval_result(R,N)),!,
N1 is N+1, assertz(eval_result(R,N1)).
add_eval_result(R) :- assertz(eval_result(R,1)).
Calls:
Name: assertz/1 |
|
Name: is/2 |
|
Name: ! |
|
Name: eval_result/2 |
dynamic predicate |
Name: retract/1 |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
add_model_checking_warnings(FindInvViolations,FindDeadlocks,FindGoal,FindAssViolations) :-
%print(check(model_checking_is_incomplete(FindInvViolations,FindDeadlocks,FindGoal,FindAssViolations,Msg,Term))),nl,
model_checking_is_incomplete(FindInvViolations,FindDeadlocks,FindGoal,FindAssViolations,Msg,Term),
add_warning(model_check_incomplete,Msg,Term),
% TO DO: store for accumulate_infos
fail.
add_model_checking_warnings(_,_,_,_).
Calls:
Name: fail |
|
Name: add_warning/3 |
Module: foo_error |
Module: model_checker |
Called:
Name: model_check_aux/5 |
Module: prob_cli |
add_vacuous_invariant(Inv) :-
translate:translate_bexpression(Inv,TI),
add_error(vacuity_check,'Vacuous invariant: ',TI).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: translate_bexpression/2 |
Module: translate |
allow_filter_unused_constants :-
b_or_z_mode,
b_top_level_operation(_), % we can filter out unused constants, unless there are no operations in which case the user probably wants to see the constant values
\+ options_can_eval_any_cst.
Calls:
Module: prob_cli | |
Name: not/1 |
|
Name: b_top_level_operation/1 |
Module: bmachine |
Name: b_or_z_mode |
Module: foo_error |
Called:
Name: cli_execute_from/5 |
Module: prob_cli |
animate_machine2 :-
print_current_state,
cli_computeOperations(Ops),
length(Ops,Max),
print('Enabled Operations: '),nl,
print_options(Ops,1),
print(' ==> '),!,
read(Nr),
(number(Nr),Nr>0,Nr=<Max
-> cli_animateOperationNr(Nr,Ops,0)
; fail
),!,
animate_machine2.
animate_machine2.
Calls:
Name: RECURSIVE_CALL/0 |
Module: prob_cli |
Name: ! |
|
Name: fail |
|
Name: cli_animateOperationNr/3 |
Module: prob_cli |
Name: =</2 |
|
Name: >/2 |
|
Name: number/1 |
|
Name: ->/3 |
|
Name: read/1 |
|
Name: print/1 |
|
Name: print_options/2 |
Module: prob_cli |
Name: nl |
|
Name: length/2 |
|
Name: cli_computeOperations/1 |
Module: prob_cli |
Name: print_current_state/0 |
Module: prob_cli |
Called:
Module: prob_cli |
animation_mode_does_not_support_animation(File) :-
loaded_main_file(smt2,File).
Calls:
Name: loaded_main_file/2 |
dynamic predicate |
Called:
Name: cli_start_animation/1 |
Module: prob_cli |
append_assertion([]).
append_assertion([H|T]) :- assertion_counter(N),
retractall(assertion_counter(_)),
N1 is N + 1,
assertz(assertion_counter(N1)),
assertz(worker:assertion_task(N1,H)),
append_assertion(T).
Calls:
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: assertz/1 |
|
Name: is/2 |
|
Name: retractall/1 |
|
Name: assertion_counter/1 |
dynamic predicate |
Called:
Name: make_assertionwps/1 |
Module: prob_cli |
assert_all_options([]).
assert_all_options([Opt|T]) :- assert_option(Opt),
assert_all_options(T).
Calls:
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: assert_option/1 |
Module: prob_cli |
Called:
Name: cli_init_options2/2 |
Module: prob_cli |
assert_option(silent) :- option(force_no_silent),!. % ignoring silent flag
assert_option(Opt) :- assertz(option(Opt)), treat_option(Opt).
Calls:
Name: treat_option/1 |
Module: prob_cli |
Name: assertz/1 |
|
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: assert_all_options/1 |
Module: prob_cli |
Name: call_probcli_option/1 |
Module: prob_cli |
Name: run_probcli3/2 |
Module: prob_cli |
Name: silent/0 |
Module: prob_cli |
Name: zmq_set_option/1 |
Module: prob_cli |
atom_contains_codes([],_) :- !.
atom_contains_codes(Codes,Name) :- atom_codes(Name,NC),
append([_,Codes,_],NC).
Calls:
Name: append/2 |
Module: foo_error |
Name: atom_codes/2 |
|
Name: ! |
available_commands(SLC) :-
findall(Cmd,(eval_command(Cs,_),atom_codes(Cmd,[58|Cs])), LC),
sort(LC,SLC).
Calls:
Name: sort/2 |
|
Name: findall/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
browse :- browse_machine([]), browse_repl_lets.
Calls:
Name: browse_repl_lets |
Module: foo_error |
Name: browse_machine/1 |
Module: prob_cli |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
browse_all_machines(CodesToMatch) :-
format('Searching machine hierarchy for identifiers matching ~s~n',[CodesToMatch]),
get_machine_identifier_names(Name,Params,Sets,AVars,CVars,AConsts,CConsts),
format('~nMACHINE ~w~n',[Name]),
display_match('PARAMS',CodesToMatch,Params,show_only_if_match),
display_match('SETS',CodesToMatch,Sets,show_only_if_match),
display_match('ABSTRACT_VARIABLES',CodesToMatch,AVars,show_only_if_match),
display_match('CONCRETE_VARIABLES',CodesToMatch,CVars,show_only_if_match),
display_match('ABSTRACT_CONSTANTS',CodesToMatch,AConsts,show_only_if_match),
display_match('CONCRETE_CONSTANTS',CodesToMatch,CConsts,show_only_if_match),
fail.
browse_all_machines(_).
Calls:
Name: fail |
|
Name: display_match/4 |
Module: prob_cli |
Name: format/2 |
|
Name: get_machine_identifier_names/7 |
Module: b_machine_hierarchy |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
browse_machine(CodesToMatch) :-
get_machine_identifiers(machines,MN), display_match('MACHINES',CodesToMatch,MN),
(CodesToMatch =[] -> print_sets
; get_machine_identifiers(sets,SN), display_match('SETS',CodesToMatch,SN),
get_machine_identifiers(set_constants,SCN), display_match('SETS-ELEMENTS',CodesToMatch,SCN)
),
get_machine_identifiers(definition_files,DFN),
(DFN=[] -> true ; display_match('DEFINITIONS FILES',CodesToMatch,DFN)),
get_machine_identifiers(definitions,DN),
(DN=[] -> true ; display_match('DEFINITIONS',CodesToMatch,DN)),
get_machine_identifiers(constants,CN),
display_match('CONSTANTS',CodesToMatch,CN),
get_machine_identifiers(variables,VN),
display_match('VARIABLES',CodesToMatch,VN),
get_machine_identifiers(operations,Ops),
display_match('OPERATIONS',CodesToMatch,Ops).
Calls:
Name: display_match/3 |
Module: prob_cli |
Module: bmachine | |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: print_sets/0 |
Module: prob_cli |
Called:
Name: browse/0 |
Module: prob_cli |
Name: eval_help/0 |
Module: prob_cli |
Name: exec_eval_command/2 |
Module: prob_cli |
call_for_option(Call) :- (call(Call) -> true ; add_internal_error('probcli option call failed: ',Call)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: true |
|
Name: call/1 |
|
Name: ->/3 |
Called:
Name: if_option_set/3 |
Module: prob_cli |
Name: ifm_option_set/3 |
Module: prob_cli |
Name: perform/1 |
Module: prob_cli |
Name: if_option_set_loaded/3 |
Module: prob_cli |
Meta: call_probcli_option(0)
call_probcli_option(_:Option) :- just_assert_option(Option), !,
(option(Option) -> true ; assert_option(Option)).
call_probcli_option(_:statistics) :- !, % avoid calling SICS version
cli_print_statistics(full).
call_probcli_option(Option) :-
catch(call(Option), error(existence_error(A,B),E), (
treat_existence_error(A,B,E,Option),
nl % ensure that next prompt is printed
)).
Calls:
Name: catch/3 |
|
Name: cli_print_statistics/1 |
Module: prob_cli |
Name: ! |
|
Name: assert_option/1 |
Module: prob_cli |
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: just_assert_option/1 |
Module: prob_cli |
cbc_assertions(AllowEnumWarning,Options) :-
findall(OPT,option(cbc_option(OPT)),FullOptions,Options),
check_loaded_not_empty(cbc_assertions),
print_repl_prompt_s('% Starting Constraint-Based static ASSERTIONS check '),nl,
start_xml_feature(cbc_assertion_check,allow_enumeration_warning,AllowEnumWarning,FINFO),
write_prolog_term_as_xml_to_log(options(Options)),
(cbc_constraint_find_static_assertion_violation(Res,FullOptions)
-> process_cbc_assertion_result(Res,AllowEnumWarning)
; write_result_to_file(cbc_assertions_failed), Res=internal_error,
print_red('CBC Check failed'),nl,
error_occurred(cbc_assertions_failure)
),
write_cbc_check_result(Res),
stop_xml_feature(cbc_assertion_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_cbc_check_result/1 |
Module: prob_cli |
Name: error_occurred/1 |
Module: prob_cli |
Name: nl |
|
Name: print_red/1 |
Module: tools_printing |
Name: =/2 |
|
Name: write_result_to_file/1 |
Module: prob_cli |
Module: prob_cli | |
Name: cbc_constraint_find_static_assertion_violation/2 |
Module: foo_error |
Name: ->/3 |
|
Name: write_prolog_term_as_xml_to_log/1 |
Module: foo_error |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Name: findall/4 |
Called:
Name: cbc_check/1 |
Module: prob_cli |
cbc_check(_NOW) :-
option(cbc_deadlock_check(DeadlockGoalPred)),
cbc_deadlock_check(DeadlockGoalPred),
fail.
cbc_check(_NOW) :-
option(constraint_based_check(OpName)),
constraint_based_check(OpName),
fail.
cbc_check(_NOW) :- option(cbc_assertions(AllowEnumWarning,Options)),
cbc_assertions(AllowEnumWarning,Options),
fail.
cbc_check(_NOW) :- option(cbc_sequence(Sequence,TargetPredString,Findall)),
cbc_sequence(Sequence,TargetPredString,Findall),
fail.
cbc_check(_NOW) :- option(cbc_refinement),
cbc_refinement,
fail.
cbc_check(_NOW) :- option(cbc_redundant_invariants(NrExpected)),
cbc_redundant_invariants(NrExpected),
fail.
cbc_check(_).
Calls:
Name: fail |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: cbc_refinement/0 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: cbc_assertions/2 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Called:
Module: prob_cli |
cbc_deadlock_check(DeadlockGoalPred) :-
print_repl_prompt_s('% Starting Constraint-Based DEADLOCK check '),nl,
start_xml_feature(cbc_deadlock_check,FINFO),
(tcltk_constraint_find_deadlock_state_with_goal(DeadlockGoalPred,false,Res)
-> write_result_to_file(Res),
(Res=time_out ->
print_red('*** TIME_OUT occurred ***'),nl,
error_occurred(cbc_deadlock_check_time_out)
; print_red('*** DEADLOCK state found ***'),nl,
error_occurred(cbc_deadlock_check),
(silent_mode(on) -> true
; print('*** STATE = '),nl,
current_b_expression(DBState), translate:print_bstate(DBState),nl,
print('*** END DEADLOCKING STATE '),nl
)
)
; write_result_to_file(no_deadlock_found), Res=no_deadlock_found,
print_green('No DEADLOCK state found'),nl
),
write_cbc_check_result(Res),
stop_xml_feature(cbc_deadlock_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_cbc_check_result/1 |
Module: prob_cli |
Name: nl |
|
Name: print_green/1 |
Module: tools_printing |
Name: =/2 |
|
Name: write_result_to_file/1 |
Module: prob_cli |
Name: print/1 |
|
Name: print_bstate/1 |
Module: translate |
Name: current_b_expression/1 |
Module: foo_error |
Name: true |
|
Name: silent_mode/1 |
Module: foo_error |
Name: ->/3 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Module: tcltk_interface | |
Name: start_xml_feature/2 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Called:
Name: cbc_check/1 |
Module: prob_cli |
cbc_redundant_invariants(NrExpected) :-
check_loaded_not_empty(cbc_redundant_invariants),
print_repl_prompt_s('% Starting Constraint-Based invariant redundancy check'),nl,
start_xml_feature(cbc_redundant_invariants,FINFO),
cbc_find_redundant_invariants(Res,TimeoutOccured),
length(Res,NrInvs),
(Res = [] -> print_green('No redundant invariants found'),nl
; format('*** REDUNDANT INVARIANTS (~w) ***~n',[NrInvs]),
prnt(1,Res), nl
),
(NrExpected = NrInvs -> true
; format_with_colour_nl(user_error,[red],'*** Expected ~w redundant invariants (instead of ~w).',[NrExpected,NrInvs]),
error_occurred(cbc_redundant_invariants)),
write_xml_element_to_log(cbc_redundant_invariants,[redundant_invariants/NrInvs, timeout_occured/TimeoutOccured]),
stop_xml_feature(cbc_redundant_invariants,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: error_occurred/1 |
Module: prob_cli |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: nl |
|
Name: prnt/2 |
Module: prob_cli |
Name: format/2 |
|
Name: print_green/1 |
Module: tools_printing |
Name: length/2 |
|
Module: b_state_model_check | |
Name: start_xml_feature/2 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Called:
Name: cbc_check/1 |
Module: prob_cli |
cbc_refinement :-
check_loaded_not_empty(cbc_refinement),
print_repl_prompt_s('% Starting Constraint-Based static refinement check '),nl,
start_xml_feature(cbc_refinement_check,FINFO),
tcltk_cbc_refinement_check(list(Result),ErrorsWereFound),
print('% Constraint-Based Refinement Check Result: '),nl,print(Result),nl,
(ErrorsWereFound = time_out -> print_red('*** TIME_OUT occurred ***'),nl,error_occurred(cbc_refinement_time_out) ;
ErrorsWereFound = true -> print_red('*** Refinement Violation found ***'),nl,error_occurred(cbc_refinement) ;
print_green('No static Refinement Violation found'),nl
),
write_xml_element_to_log(cbc_check_result,[errors_were_found/ErrorsWereFound]),
stop_xml_feature(cbc_refinement_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: nl |
|
Name: print_green/1 |
Module: tools_printing |
Name: error_occurred/1 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Name: print/1 |
|
Module: tcltk_interface | |
Name: start_xml_feature/2 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Called:
Name: cbc_check/1 |
Module: prob_cli |
cbc_sequence(Sequence,TargetPredString,Findall) :-
check_loaded_not_empty(cbc_sequence),
print_repl_prompt_s('% Starting Constraint-Based Check for Sequence: '), print_repl_prompt_s(Sequence),
start_xml_feature(cbc_sequence_check,sequence,Sequence,FINFO),
(TargetPredString='' -> true ; print(' with target: '), print(TargetPredString)),
nl,
write_xml_element_to_log(options,[target_predicate/TargetPredString]),
(tcltk_cbc_find_trace(Sequence,TargetPredString,Findall,Res)
-> (Res=ok -> print_green('Sequence found and executed'),nl
; Res=time_out -> error_occurred(cbc_sequence_time_out)
; Res=no_solution_found -> print_red('*** NO SOLUTION FOUND '),error_occurred(cbc_sequence_no_solution_found)
; Res=nr_cbc_sols(NrSols) -> print('*** # SOLUTIONS FOUND: '),print(NrSols),nl
; print_red('*** Unknown result: '), print(Res),nl,
error_occurred(cbc_sequence)
)
; print('*** Internal error: Check failed '), error_occurred(cbc_sequence), Res=internal_error
),
write_cbc_check_result(Res),
stop_xml_feature(cbc_sequence_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_cbc_check_result/1 |
Module: prob_cli |
Name: =/2 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print/1 |
|
Name: nl |
|
Name: print_red/1 |
Module: tools_printing |
Name: ->/3 |
|
Name: print_green/1 |
Module: tools_printing |
Name: tcltk_cbc_find_trace/4 |
Module: tcltk_interface |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: true |
|
Name: start_xml_feature/4 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Called:
Name: cbc_check/1 |
Module: prob_cli |
cbc_test_case_generation(ADepth,TargetString,Output) :-
arg_is_number(ADepth,MaxDepth),
( option(cbc_cover_all) -> Events=all
; (get_comma_or_space_separated_options(cbc_cover,Events), Events \= []) -> true
; Events=all ),
(\+ option(cbc_cover_final) -> FEvents = Events
; Events=all -> FEvents=all,
add_error(cbc_cover_final,'Option cbc_cover_final not compatible with trying to cover all events')
; FEvents = final(Events),
println_silent('constraint based test case generation, target events considered final')),
printsilent('constraint based test case generation, maximum search depth: '),printsilent(MaxDepth),nls,
printsilent('constraint based test case generation, target state predicate: '),printsilent(TargetString),nls,
printsilent('constraint based test case generation, output file: '),printsilent(Output),nls,
(TargetString = '#not_invariant' -> BMC=invariant_violation
; TargetString = '#deadlock' -> BMC=deadlock
; BMC = 'none'),
(BMC \= 'none' ->
printsilent('constraint based test case generation, performing bounded model checking'),nls
; option(silent) -> true
; print('constraint based test case generation, events to cover: '),print_list(Events),nl),
cbc_gen_test_cases_from_string(FEvents,TargetString,MaxDepth,Output,Uncovered),
!,
format('constraint based test case generation finished~n',[]),
(BMC \= 'none'
-> tcl_get_stored_test_cases(list(Tests)), %print(tests(Tests)),nl,
(Tests=[] -> print_green('No counterexample found'),nl
; Tests = [_|_], BMC=deadlock -> add_error(deadlock,'Deadlock found by bmc')
; Tests = [_|_] -> add_error(invariant_violation,'Invariant violation found by bmc')
; add_internal_error('Unexpected bmc result: ',Tests)
)
; Uncovered=[_|_],option(strict_raise_error)
-> add_error(cbc_tests,'Uncovered events: ',Uncovered)
; print_uncovered('constraint based test case generation, ',Uncovered)
).
cbc_test_case_generation(_ADepth,_ATarget,_Output) :-
print_error('Constraint based test case generation failed!'),
error_occurred(cbc_tests).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: print_uncovered/2 |
Module: prob_cli |
Name: add_error/3 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Name: =/2 |
|
Name: ->/3 |
|
Name: add_internal_error/2 |
Module: foo_error |
Name: add_error/2 |
Module: foo_error |
Name: nl |
|
Name: print_green/1 |
Module: tools_printing |
Name: tcl_get_stored_test_cases/1 |
Module: foo_error |
Name: \=/2 |
|
Name: format/2 |
|
Name: ! |
|
Name: cbc_gen_test_cases_from_string/5 |
Module: foo_error |
Name: print_list/1 |
Module: prob_cli |
Name: print/1 |
|
Name: true |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: println_silent/1 |
Module: foo_error |
Name: not/1 |
|
Module: prob_cli | |
Name: arg_is_number/2 |
Module: tools |
check_abstract_constants :-
format('Checking whether abstract constants can be expanded:~n',[]),
current_expression(_ID,CurState),
expand_const_and_vars_to_full_store(CurState,EState),
abstract_constant(AID,_),
lookup_value_for_existing_id(AID,EState,Val),
get_value_type(Val,VF),
format(user_output,'~n*** Evaluating ABSTRACT_CONSTANT (stored value: ~w):~n',[VF]),
format_with_colour_nl(user_output,[blue],' ~w',[AID]),
(debug_mode(off) -> true
; translate:translate_bvalue(Val,VS), format_with_colour_nl(user_output,[blue],' Stored value = ~w',[VS])),
atom_codes(AID,C),
% TO DO: provide info if value symbolic and can be expanded fully + add timing
% term_size, unique in state space
% this command is deprecated compared to -csv constants_analysis (i.e., tcltk_analyse_constants)
eval_codes(C,exists,_,_EnumWarning,_LS,_),nl, % TO DO: call try_expand_and_convert_to_avl_with_check(Val)
fail.
check_abstract_constants.
Calls:
Name: fail |
|
Name: nl |
|
Name: eval_codes/6 |
Module: foo_error |
Name: atom_codes/2 |
|
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: translate_bvalue/2 |
Module: translate |
Name: true |
|
Name: debug_mode/1 |
Module: foo_error |
Name: ->/3 |
|
Name: format/3 |
|
Name: get_value_type/2 |
Module: prob_cli |
Module: store | |
Name: abstract_constant/2 |
Module: b_machine_hierarchy |
Name: expand_const_and_vars_to_full_store/2 |
Module: foo_error |
Name: current_expression/2 |
Module: state_space |
Name: format/2 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
check_all_expected_errors_occurred(NOW) :-
%error_manager:display_error_statistics,
get_errors, get_state_space_errors,
retractall(error_did_not_occur(_)),
expected_error(Type),
\+ expected_error_occurred(Type),
print('*** Expected Error of following type to occur: '), print(Type),nl,
writeln_log_time(expected_error_did_not_occur(NOW,Type)),
assertz(error_did_not_occur(Type)),
(option(strict_raise_error) -> definite_error_occurred ; fail).
check_all_expected_errors_occurred(_NOW) :-
(expected_error(_)
-> (error_did_not_occur(_) -> print('*** Some expected errors did NOT occur !')
; print('All expected errors occurred.')),nl
; true).
Calls:
Name: true |
|
Name: nl |
|
Name: print/1 |
|
Name: error_did_not_occur/1 |
dynamic predicate |
Name: ->/3 |
|
Name: expected_error/1 |
Module: prob_cli |
Name: fail |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: assertz/1 |
|
Name: writeln_log_time/1 |
Module: foo_error |
Name: expected_error_occurred/1 |
dynamic predicate |
Name: not/1 |
|
Name: retractall/1 |
|
Name: get_state_space_errors/0 |
Module: prob_cli |
Name: get_errors/0 |
Module: prob_cli |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
check_atom_looks_like_file(Number) :- number(Number),!,
add_warning(probcli,'Command-line argument is a number (expected file name or probcli command): ',Number).
check_atom_looks_like_file(File) :- atom_codes(File,Codes),
check_codes_look_like_file(Codes,File).
Calls:
Module: prob_cli | |
Name: atom_codes/2 |
|
Name: add_warning/3 |
Module: foo_error |
Name: ! |
|
Name: number/1 |
check_codes_look_like_file(Codes,Arg) :-
check_codes_resembles_command(Codes,Arg),!.
check_codes_look_like_file([D|T],Arg) :- D >= 0'0, D =< 0'9,
nonmember(0'/,T), % detect things like 01_Jan/a.mch
!,
add_message(probcli,'Command-line argument looks like a number: ',Arg).
check_codes_look_like_file(_,_).
Calls:
Name: add_message/3 |
Module: foo_error |
Name: ! |
|
Name: nonmember/2 |
|
Name: =</2 |
|
Name: >=/2 |
|
Module: prob_cli |
Called:
Module: prob_cli |
check_codes_resembles_command([45|_],Arg) :- !,
(get_possible_fuzzy_match_options(Arg,FuzzyMatches),
FuzzyMatches \= []
-> (FuzzyMatches=[FM]
-> ajoin(['Command-line argument ', Arg, ' looks like a probcli command! Did you mean: '],Msg),
add_warning(probcli,Msg,FM)
; ajoin(['Command-line argument ', Arg, ' looks like a probcli command! Did you mean any of: '],Msg),
add_warning(probcli,Msg,FuzzyMatches)
)
; get_possible_options_completion_msg(Arg,Completions)
-> ajoin(['Command-line argument ', Arg, ' looks like a probcli command! Did you mean: '],Msg),
add_warning(probcli,Msg,Completions)
; add_message(probcli,'Command-line argument looks like an unknown probcli command: ',Arg)).
Calls:
Name: add_message/3 |
Module: foo_error |
Name: add_warning/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Module: prob_cli | |
Name: ->/3 |
|
Name: =/2 |
|
Name: \=/2 |
|
Module: prob_cli | |
Name: ! |
Called:
Module: prob_cli |
check_complete :-
(tcltk_find_max_reached_node(Node1) ->
add_error(check_complete,'Maximum number of transitions reached for at least one state: ',Node1) ; true),
(not_all_transitions_added(Node2) ->
add_error(check_complete,'At least one state was not examined: ',Node2) ; true),
(not_invariant_checked(Node3) ->
add_error(check_complete,'The invariant was not checked for at least one state: ',Node3) ; true),
(not_interesting(Node4) ->
add_message(check_complete,'At least one state was ignored (not satisfying the SCOPE predicate): ',Node4) ; true).
Calls:
Name: true |
|
Name: add_message/3 |
Module: foo_error |
Name: not_interesting/1 |
Module: state_space |
Name: ->/3 |
|
Name: add_error/3 |
Module: foo_error |
Name: not_invariant_checked/1 |
Module: state_space |
Module: state_space | |
Name: tcltk_find_max_reached_node/1 |
Module: foo_error |
check_complete_operation_coverage :-
(state_space: operation_name_not_yet_covered(OpName) ->
add_error(check_complete_operation_coverage,'At least one operation is not covered: ', OpName)
; true).
Calls:
Name: true |
|
Name: add_error/3 |
Module: foo_error |
Module: state_space | |
Name: ->/3 |
check_deadlock_fail('$setup_constants') :- !, error_occurred(setup_constants_inconsistent),fail.
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: ! |
Called:
Module: prob_cli |
check_expected(St,Exp,Mode) :-
(St=Exp -> true
; ajoin(['Unexpected ',Mode,' model checking result ',St,', expected: '],Msg),
add_error(Mode,Msg,Exp)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
Called:
Name: check_status/4 |
Module: prob_cli |
check_failures_mode(Shortcut,FailuresModel) :- valid_failures_model(FailuresModel,Shortcut),!.
check_failures_mode(Shortcut,trace) :-
add_warning(probcli,'Unrecognised refinement model flag (must be F, FD, T, R, RD, V, VD; using default trace model T): ',Shortcut).
Calls:
Name: add_warning/3 |
Module: foo_error |
Name: ! |
|
Name: valid_failures_model/2 |
Module: foo_error |
check_file_arg(File,Command) :- normalise_option_atom(File,NF),
recognised_option(NF,_,_,_),!,
ajoin(['Command-line file argument for ', Command, ' looks like another probcli command: '],Msg),
add_warning(probcli,Msg,File).
check_file_arg(File,Command) :-
tools:check_filename_arg(File,Command).
Calls:
Name: check_filename_arg/2 |
Module: tools |
Name: add_warning/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: ! |
|
Name: recognised_option/4 |
Module: prob_cli |
Name: normalise_option_atom/2 |
Module: prob_cli |
check_for_errors(CurID,StepNr) :- invariant_violated(CurID),
\+ option(no_invariant_violations),
get_preference(do_invariant_checking,true),
ajoin(['INVARIANT VIOLATED after ',StepNr,' steps (state id ',CurID,').'],ErrMsg),
format('~w~n',[ErrMsg]),
visited_expression(CurID,CurState), print_state_silent(CurState),
error_occurred_with_msg(invariant_violation,ErrMsg),
fail.
check_for_errors(CurID,_) :- get_state_errors(CurID).
Calls:
Name: get_state_errors/1 |
Module: prob_cli |
Name: fail |
|
Module: prob_cli | |
Name: print_state_silent/1 |
Module: prob_cli |
Name: visited_expression/2 |
Module: state_space |
Name: format/2 |
|
Name: ajoin/2 |
Module: tools_strings |
Name: get_preference/2 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: invariant_violated/1 |
Module: state_space |
Called:
Name: perform_random_step/4 |
Module: prob_cli |
check_java_version :- check_java_version(V,Result),
format('Result of checking Java version:~n ~w~n',[V]),
(Result=compatible -> check_parser_version
; add_error(check_java_version,V)).
Calls:
Name: add_error/2 |
Module: foo_error |
Name: check_parser_version/0 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: format/2 |
|
Name: check_java_version/2 |
Module: parsercall |
check_loaded(Action) :-
( file_loaded(true) -> true
; file_loaded(error) -> fail /* we have already generated error message */
;
add_error(probcli,'No file specified; cannot perform action: ',Action),
error_occurred(loading),fail).
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: add_error/3 |
Module: foo_error |
Name: file_loaded/1 |
Module: prob_cli |
Name: ->/3 |
|
Name: true |
Called:
Module: prob_cli | |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
check_loaded_not_empty(Action) :-
file_loaded(true,'$$empty_machine'),!,
add_error(probcli,'No file specified; cannot perform command: ',Action),
error_occurred(loading),fail.
check_loaded_not_empty(Action) :- check_loaded(Action).
Calls:
Name: check_loaded/1 |
Module: prob_cli |
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: add_error/3 |
Module: foo_error |
Name: ! |
|
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: if_option_set_loaded/3 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cbc_refinement/0 |
Module: prob_cli |
Module: prob_cli |
check_machine_file_sha(File,ExpectedHash) :- Span = check_machine_file_sha,
get_full_machine_file_path(File,AbsFile),
raw_sha_hash_file(AbsFile,Term,Span),
get_hex_bytes(Term,SHAHexCodes), atom_codes(ExpectedHash,ExpectedShaCodes),
(SHAHexCodes=ExpectedShaCodes
-> format_with_colour_nl(user_output,[green],'Checked SHA1 hash for file ~w is ~s',[AbsFile,SHAHexCodes])
; add_error(check_machine_file_sha,'Unexpected SHA1 hash of file:',AbsFile),
format_with_colour_nl(user_error,[orange],'! Expected: ~w~n! Actual : ~s',[ExpectedHash,SHAHexCodes])
).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: add_error/3 |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: atom_codes/2 |
|
Name: get_hex_bytes/2 |
Module: tools_strings |
Name: raw_sha_hash_file/3 |
Module: probhash/probhash |
Module: prob_cli |
check_model_result(AssertionPlTerm,ResTrace) :-
( ResTrace==no_counter_example ->
printsilent('==> Model Check Successful'),nls
;
(functor(AssertionPlTerm,assertRef,_Arity) ->
print('*** Refinement Check Counter-Example: ***'),nl, print(ResTrace),nl,
print('*** Refinement Check Failed ***'),nl,
error_occurred(refinement_check_fails)
;
print('*** Model Check Counterexample: ***'),nl,print(ResTrace),nl,
print('*** Model Check Failed ***'),nl,
error_occurred(model_check_fails))
).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
|
Name: functor/3 |
|
Name: ->/3 |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: ==/2 |
Called:
Module: prob_cli | |
Name: cli_checkAssertion/4 |
Module: prob_cli |
check_nr_of_steps(Steps) :- option(execute_expect_steps(ExpSteps)),
(Steps = ExpSteps -> formatsilent('The expected number of steps were executed: ~w~n',[Steps]),fail
; true),
!,
ajoin(['Unexpected number of steps ',Steps,', expected:'],Msg),
add_error(cli_execute,Msg,ExpSteps).
check_nr_of_steps(_).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: ! |
|
Name: true |
|
Name: fail |
|
Name: formatsilent/2 |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli |
check_parser_version :- get_parser_version(PV),!,
format(' ProB B Java Parser available in version: ~w.~n',[PV]). % will also launch parser
check_parser_version :- add_error(check_parser_version,'Cannot start Java B Parser to obtain version number').
Calls:
Name: add_error/2 |
Module: foo_error |
Name: format/2 |
|
Name: ! |
|
Name: get_parser_version/1 |
Module: parsercall |
Called:
Name: check_java_version/0 |
Module: prob_cli |
check_partial_trans(true,'$setup_constants') :- !, error_occurred(setup_constants_inconsistent).
check_partial_trans(true,ActionName) :- !, format('Unknown partial transition: ~w~n',[ActionName]),
error_occurred(setup_constants_inconsistent).
check_partial_trans(_,_).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: format/2 |
|
Name: ! |
Called:
Module: prob_cli |
check_ref_result(RefTrace) :-
( RefTrace==no_counter_example ->
print('==> Refinement Check Successful'),nl
; RefTrace==no_counter_example_found ->
print('==> Refinement Check did not find Counter-Example but is incomplete'),nl,
error_occurred(refinement_check_incomplete)
;
print('*** Refinement Check Counter-Example: ***'),nl, print(RefTrace),nl,
print('*** Refinement Check Failed ***'),nl,
error_occurred(refinement_check_fails)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
|
Name: ==/2 |
|
Name: ->/3 |
check_required_infos([],_,_).
check_required_infos([H|T],Infos,ErrType) :-
(check_single_info(H,Infos)
-> check_required_infos(T,Infos,ErrType)
; translate_err_type(ErrType,ES),
format_with_colour_nl(user_error,[red],
'*** Unexpected result while checking: ~w~n*** expected : ~w~n*** in : ~w',
[ES,H,Infos]),
error_occurred(ErrType)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: translate_err_type/2 |
Module: prob_cli |
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: check_single_info/2 |
Module: prob_cli |
Name: ->/3 |
Called:
Name: cli_check_op_cache/1 |
Module: prob_cli |
Name: load_spec_file/3 |
Module: prob_cli |
Name: cli_wd_check/2 |
Module: prob_cli |
Name: cli_check_goal/0 |
Module: prob_cli |
Name: cli_check_assertions/3 |
Module: prob_cli |
check_single_info(Label-Nr,Infos) :- !, member(Label-ActualNr,Infos),
match_info(Nr,ActualNr).
check_single_info(H,List) :- member(H,List).
Calls:
Name: member/2 |
|
Name: match_info/2 |
Module: prob_cli |
Name: ! |
Called:
Name: check_required_infos/3 |
Module: prob_cli |
check_status(ok,Expected,Formula,ltl) :- !, % TO DO: make uniform ? CTL returns true; LTL returns ok
format_with_colour_nl(user_output,[green],'LTL Formula TRUE.~nNo counter example found for ~w.',[Formula]),
flush_output(user_output),
check_expected(true,Expected,ltl).
check_status(true,Expected,Formula,ctl) :- !,
format_with_colour_nl(user_output,[green],'CTL Formula TRUE.~nNo counter example found for ~w.',[Formula]),
flush_output(user_output),
check_expected(true,Expected,ctl).
check_status(incomplete,Expected,Formula,LTLorCTL) :- !,
incomplete_warning(LTLorCTL,Warning),
add_warning(Warning, 'Warning: Model Check incomplete for: ', Formula),nl,
format('No counter example found so far for ~w.~n',[Formula]),
check_expected(incomplete,Expected,LTLorCTL).
check_status(NO,Expected,Formula,LTLorCTL) :- (NO=no ; NO=false),!, % TO DO: make uniform
(Expected==false
-> format_with_colour_nl(user_error,[red],'Model Check Counterexample found for: ~w',[Formula])
; add_error(LTLorCTL, 'Model Check Counterexample found for: ', Formula),nl
),
print('Formula '), print('FALSE.'),nl,
debug_format(19,'Use -his FILE -his_option show_states to display counterexample~n',[]),
nl,
check_expected(false,Expected,LTLorCTL).
check_status(Status,Expected,Formula,LTLorCTL) :-
add_internal_error('Unknown status: ', check_status(Status,Expected,Formula,LTLorCTL)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: check_expected/3 |
Module: prob_cli |
Name: nl |
|
Name: debug_format/3 |
Module: foo_error |
Name: print/1 |
|
Name: add_error/3 |
Module: foo_error |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: ==/2 |
|
Name: ->/3 |
|
Name: ! |
|
Name: =/2 |
|
Name: format/2 |
|
Name: add_warning/3 |
Module: foo_error |
Name: incomplete_warning/2 |
Module: prob_cli |
Name: flush_output/1 |
Called:
Name: cli_ctl_model_check/4 |
Module: prob_cli |
Name: cli_ltl_model_check/4 |
Module: prob_cli |
check_totals(Nodes,Operations,TotalNodeSum,TotalTransSum) :-
( Nodes=TotalNodeSum -> true
;
add_error(probcli,'Unexpected number of nodes: ',TotalNodeSum),
add_error(probcli,'Expected: ',Nodes),error_occurred(coverage)),
( Operations=TotalTransSum -> true
;
add_error(probcli,'Unexpected number of transitions: ',TotalTransSum),
add_error(probcli,'Expected: ',Operations),error_occurred(coverage)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
Called:
Name: cli_show_coverage/4 |
Module: prob_cli |
check_trans_time(StartExecuteForState,StartActionTime,ActionName) :-
option(execute_monitoring),
statistics(runtime,[CurrentTime,_]),
Delta1 is StartActionTime-StartExecuteForState,
Delta2 is CurrentTime-StartActionTime,
Delta1 > 100, Delta1 > Delta2,
!,
format_with_colour(user_output,[blue],'~n ~5|: WARNING from -execute_monitor: ~w ms for disabled operations and ~w ms for operation ~w itself~n',[Delta1,Delta2,ActionName]).
check_trans_time(_,_,_).
Calls:
Name: format_with_colour/4 |
Module: tools_printing |
Name: ! |
|
Name: >/2 |
|
Name: is/2 |
|
Name: statistics/2 |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_trans/5 |
Module: prob_cli |
check_unavailable_options :-
option(Opt),
cli_option_not_available(Opt,ProBExtension,Reason),
(recognised_option(Name,Opt,_,_) -> true ; Name=Opt),
ajoin(['probcli command ', Name,' cannot be performed because extension not available (',Reason,'):'],Msg),
add_error(probcli,Msg,ProBExtension),
fail.
check_unavailable_options.
Calls:
Name: fail |
|
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: =/2 |
|
Name: true |
|
Name: recognised_option/4 |
Module: prob_cli |
Name: ->/3 |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
clear_loaded_files :-
(file_loaded(_) -> clear_loaded_machines_wo_errors ; true).
Calls:
Name: true |
|
Name: clear_loaded_machines_wo_errors |
Module: foo_error |
Name: file_loaded/1 |
Module: prob_cli |
Name: ->/3 |
Called:
Name: cli_load_files2/3 |
Module: prob_cli |
Name: reload_mainfile/0 |
Module: prob_cli |
cli_add_additional_property(PROP) :-
debug_println(20,add_additional_property(PROP)),
(bmachine:add_additional_property(PROP,'command line -property') -> true
; add_error(scope,'Adding additional predicate to PROPERTIES failed:',PROP)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Module: bmachine | |
Name: ->/3 |
|
Name: debug_println/2 |
Module: foo_error |
cli_animateOperationNr(Nr,Options,StepNr) :-
(option(animate_stats)
-> nth1(Nr,Options,Action),
truncate_animate_action(Action,TA),
(StepNr>1 -> format('performing step ~w : ~w~n',[StepNr,TA])
; format('performing ~w~n',[TA]))
; true),
tcltk_perform_nr(Nr).
Calls:
Name: tcltk_perform_nr/1 |
Module: foo_error |
Name: true |
|
Name: format/2 |
|
Name: >/2 |
|
Name: ->/3 |
|
Module: prob_cli | |
Name: nth1/3 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Called:
Name: animate_machine2/0 |
Module: prob_cli |
Name: perform_random_step/4 |
Module: prob_cli |
cli_assertions_ko(_,_,_) :- option(no_assertion_violations),!,fail. % user asks not to check it
cli_assertions_ko(CurState,_LastActionName,Res) :-
state_corresponds_to_initialised_b_machine(CurState,BState),
get_assertions_from_machine(dynamic,Assertions), % TO DO: do something similar to b_specialized_invariant_for_op
!,
profile_single_call('ASSERTIONS',unknown,cli_assertions_ko2(BState,Assertions,Res)).
Calls:
Name: profile_single_call/3 |
Module: runtime_profiler |
Name: ! |
|
Module: bmachine | |
Name: state_corresponds_to_initialised_b_machine/2 |
Module: foo_error |
Name: fail |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
cli_assertions_ko2(BState,Assertions,Res) :-
start_probcli_timer(AssTimer),
%nl,nl,print(check),nl,maplist(translate:print_bexpr,Assertions),nl,
(member(Ass,Assertions),
cli_test_pred(BState,'ASSERTION',Ass,Res),
Res \= 'TRUE' -> true
; Res = 'TRUE'
),
stop_probcli_debug_timer(AssTimer,'Finished Checking Assertions'),
Res \= 'TRUE'.
Calls:
Name: \=/2 |
|
Module: prob_cli | |
Name: =/2 |
|
Name: true |
|
Name: cli_test_pred/4 |
Module: prob_cli |
Name: member/2 |
|
Name: ->/3 |
|
Name: start_probcli_timer/1 |
Module: prob_cli |
cli_checkAssertion(Proc,Model,AssertionType,_NOW) :-
loaded_main_file(CSPFile),
ajoin(['assert ',Proc,' :[ ',AssertionType,'[',Model,']',' ]'],Assertion),
start_xml_feature(csp_deadlock_check,assertion,Assertion,FINFO),
( /*timeout_call(*/tcltk_interface:tcltk_check_csp_assertion(Assertion,CSPFile,'False',_PlTerm,ResTrace)/*,NOW,a)*/
-> check_model_result(Assertion,ResTrace)
; true),
stop_xml_feature(csp_deadlock_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: true |
|
Name: check_model_result/2 |
Module: prob_cli |
Module: tcltk_interface | |
Name: ->/3 |
|
Name: start_xml_feature/4 |
Module: prob_cli |
Name: ajoin/2 |
Module: tools_strings |
Name: loaded_main_file/1 |
Module: prob_cli |
cli_check_assertions(ALL,RI) :-
probcli_time_stamp(NOW),
cli_check_assertions(ALL,RI,NOW).
Calls:
Name: cli_check_assertions/3 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Called:
Name: cli_check_assertions/2 |
Module: prob_cli |
cli_check_assertions(ALL,ReqInfos,NOW) :-
printsilent('% Checking ASSERTIONS: '),nls,
writeln_log_time(starting_check_assertions(NOW)),
set_analyse_hook('_A'), % for dot output, in case users wants to generate dot files for assertions
predicate_evaluator:tcltk_analyse_assertions(ALL,_ASSRES,Infos), % also checks CSP assertions
unset_analyse_hook,
printsilent(Infos),nls,
accumulate_infos(assertions,Infos),
write_important_xml_element_to_log(check_assertions,Infos),
check_required_infos(ReqInfos,Infos,check_assertions),
writeln_log_time(finished_check_assertions(NOW,Infos)),
loaded_root_filename(RootName),
formatsilent('% Finished checking ASSERTIONS of ~w~n',[RootName]),!.
cli_check_assertions(ALL,ReqInfos,NOW) :-
add_internal_error('Analyse ASSERTIONS unexpectedly failed',cli_check_assertions(ALL,ReqInfos,NOW)),
error_occurred(internal_error).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: add_internal_error/2 |
Module: foo_error |
Name: ! |
|
Name: formatsilent/2 |
Module: foo_error |
Name: loaded_root_filename/1 |
Module: prob_cli |
Name: writeln_log_time/1 |
Module: foo_error |
Name: check_required_infos/3 |
Module: prob_cli |
Module: prob_cli | |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: unset_analyse_hook/0 |
Module: prob_cli |
Module: predicate_evaluator | |
Name: set_analyse_hook/1 |
Module: prob_cli |
Called:
Name: cli_check_assertions/2 |
Module: prob_cli |
cli_check_csp_assertion(Assertion,NOW) :-
start_xml_feature(csp_assertion_check,assertion,Assertion,FINFO),
loaded_main_file(CSPFile),
ajoin(['assert ',Assertion],AssertionFull),
( timeout_call(tcltk_interface:tcltk_check_csp_assertion(AssertionFull,CSPFile,_Negated,PlTerm,ResTrace),NOW,csp_assertion_check)
-> check_model_result(PlTerm,ResTrace)
; true),
stop_xml_feature(csp_assertion_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: true |
|
Name: check_model_result/2 |
Module: prob_cli |
Name: timeout_call/3 |
Module: prob_cli |
Name: ->/3 |
|
Name: ajoin/2 |
Module: tools_strings |
Name: loaded_main_file/1 |
Module: prob_cli |
Name: start_xml_feature/4 |
Module: prob_cli |
cli_check_goal :- \+ b_get_machine_goal(_),!,
add_error(cli_check_goal,'No GOAL DEFINITION found'),
error_occurred(cli_check_goal).
cli_check_goal :-
printsilent('% Checking GOAL predicate: '),nls,
tcltk_analyse_goal(_List,Summary),
debug_println(20,Summary),
accumulate_infos(check_goal,Summary),
write_important_xml_element_to_log(check_goal,Summary),
check_required_infos([false/0,unknown/0],Summary,check_goal).
Calls:
Name: check_required_infos/3 |
Module: prob_cli |
Module: prob_cli | |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: tcltk_analyse_goal/2 |
Module: foo_error |
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: error_occurred/1 |
Module: prob_cli |
Name: add_error/2 |
Module: foo_error |
Name: ! |
|
Name: b_get_machine_goal/1 |
Module: bmachine |
Name: not/1 |
cli_check_op_cache(ReqInfos) :-
get_op_cache_stats(Stats),
(ReqInfos=[] -> format('Operation caching statistics: ~w~n',[Stats])
; formatsilent('Operation caching statistics: ~w~n',[Stats])),
accumulate_infos(op_cache,Stats),
check_required_infos(ReqInfos,Stats,op_cache_stats).
Calls:
Name: check_required_infos/3 |
Module: prob_cli |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: formatsilent/2 |
Module: foo_error |
Name: format/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: get_op_cache_stats/1 |
Module: foo_error |
Called:
Module: prob_cli |
cli_check_properties :- probcli_time_stamp(NOW),
cli_check_properties(NOW).
Calls:
Name: cli_check_properties/1 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Called:
Name: cli_check_properties/0 |
Module: prob_cli |
cli_check_properties(NOW) :-
printsilent('% Checking PROPERTIES: '),nls,
writeln_log_time(starting_check_properties(NOW)),
( current_state_corresponds_to_setup_constants_b_machine ->
set_analyse_hook('_P'),
predicate_evaluator:tcltk_analyse_properties(_PROPRES,PROPInfos),
unset_analyse_hook,
printsilent(PROPInfos),nls, % ex: [total/33,true/29,false/0,unknown/4,timeout/4,runtime/49950]
accumulate_infos(properties,PROPInfos),
write_important_xml_element_to_log(check_properties,PROPInfos),
(predicate_evaluator:check_summary_all_true(PROPInfos) -> true
; print_error('Not all PROPERTIES true'), error_occurred(check_properties))
;
(tcltk_debug_properties(list(PROPRES),false,Satisfiable)
-> printsilent(PROPRES),nls,
printsilent(Satisfiable),nls
; error_occurred(debug_properties_failed))
),
writeln_log_time(finished_check_properties(NOW,PROPInfos)),
loaded_root_filename(RootName),
formatsilent('% Finished checking PROPERTIES of ~w~n',[RootName]).
Calls:
Name: formatsilent/2 |
Module: foo_error |
Name: loaded_root_filename/1 |
Module: prob_cli |
Name: writeln_log_time/1 |
Module: foo_error |
Name: error_occurred/1 |
Module: prob_cli |
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: tcltk_debug_properties/3 |
Module: foo_error |
Name: ->/3 |
|
Name: print_error/1 |
Module: tools_printing |
Name: true |
|
Name: check_summary_all_true/1 |
Module: predicate_evaluator |
Module: prob_cli | |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: unset_analyse_hook/0 |
Module: prob_cli |
Module: predicate_evaluator | |
Name: set_analyse_hook/1 |
Module: prob_cli |
Name: current_state_corresponds_to_setup_constants_b_machine/0 |
Module: state_space |
Called:
Name: cli_check_properties/0 |
Module: prob_cli |
cli_check_scc_for_ltl_formula(LtlFormula,SCC) :-
check_scc_ce(LtlFormula,SCC).
Calls:
Name: check_scc_ce/2 |
Module: foo_error |
cli_check_statespace_hash(Expected,Kind) :-
printsilent('Computing hash of entire statespace: '),
compute_full_state_space_hash(Hash),
printsilent(Hash),nls, % TO DO: maybe also compute hash for transitions and check that
(Hash=Expected -> true
; Kind=='64bit', \+ platform_is_64_bit -> format('Hash does not match ~w (but was computed on 64-bit system)~n',[Expected])
; Kind=='32bit', platform_is_64_bit -> format('Hash does not match ~w (but was computed on 32-bit system)~n',[Expected])
; add_error(hash,'Expected Statespace Hash to be: ',Expected)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: format/2 |
|
Name: platform_is_64_bit/0 |
Module: tools_platform |
Name: ==/2 |
|
Name: ->/3 |
|
Name: not/1 |
|
Name: true |
|
Name: =/2 |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Module: state_space |
cli_computeOperations(Ops) :- option(animate_stats),!, % provide statistics about the animation
nl,
start_probcli_timer(Timer),
current_state_id(CurID),
tcltk_get_options(list(Ops)),
ajoin(['Time to compute all operations in state ',CurID,': '],Msg),
stop_probcli_timer(Timer,Msg).
cli_computeOperations(Ops) :- tcltk_get_options(list(Ops)).
Calls:
Name: tcltk_get_options/1 |
Module: foo_error |
Name: stop_probcli_timer/2 |
Module: prob_cli |
Name: ajoin/2 |
Module: tools_strings |
Name: current_state_id/1 |
Module: state_space |
Name: start_probcli_timer/1 |
Module: prob_cli |
Name: nl |
|
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: perform_random_step/4 |
Module: prob_cli |
Name: cli_start_animation/1 |
Module: prob_cli |
Name: zmq_start_animation/0 |
Module: prob_cli |
Name: animate_machine2/0 |
Module: prob_cli |
cli_core_properties(Algorithm) :-
format('% Checking CONSISTENCY of PROPERTIES by finding UNSAT CORE (using ~w)~n',[Algorithm]),
b_get_properties_from_machine(Properties),!,
size_of_conjunction(Properties,NrOfConjuncts),
statistics(walltime,[W1,_]),
(find_core(Algorithm,Properties,Core,Result)
-> statistics(walltime,[W2,_]), WTime is W2-W1,
length(Core,Len),
accumulate_infos(properties_core,[contradiction_found-1,core_length-Len,
properties-NrOfConjuncts,walltime-WTime]),
format('UNSAT CORE of length ~w found, PROPERTIES are inconsistent! (~w, ~w ms walltime using ~w)~n',[Len,Result,WTime,Algorithm]),
translate:nested_print_bexpr_as_classicalb(Core),
format('% END OF UNSAT CORE (~w conjuncts)~n',[Len])
% TODO: raise setup_constants_fails and avoid trying to solve properties later
; statistics(walltime,[W2,_]), WTime is W2-W1,
accumulate_infos(properties_core,[contradiction_found-0,core_length-0,
properties-NrOfConjuncts,walltime-WTime]),
format('No small UNSAT CORE found, PROPERTIES may be consistent (~w ms walltime).~n',[WTime])
).
Calls:
Name: format/2 |
|
Name: accumulate_infos/2 |
Module: prob_cli |
Name: is/2 |
|
Name: statistics/2 |
|
Module: translate | |
Name: length/2 |
|
Name: find_core/4 |
Module: prob_cli |
Name: ->/3 |
|
Name: size_of_conjunction/2 |
Module: bsyntaxtree |
Name: ! |
|
Module: bmachine |
cli_csp_get_assertions :-
loaded_main_file(CSPFile),
get_csp_assertions_as_string(CSPFile,String),
print('*** Assertions in File (separated by $) ***'),nl,print(String),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Module: haskell_csp | |
Name: loaded_main_file/1 |
Module: prob_cli |
cli_csp_in_situ_refinement_check(P,Type,Q,NOW) :-
debug_println(20,'% Starting CSP Refinement Check'),
loaded_main_file(CSPFile),
ajoin_with_sep(['assert',P,Type,Q], ' ',Assertion),
start_xml_feature(csp_refinement_check,assertion,Assertion,FINFO),
( timeout_call(tcltk_interface:tcltk_check_csp_assertion(Assertion,CSPFile,'False',_PlTerm,RefTrace),NOW,'cspref')
-> check_ref_result(RefTrace)
; true),
stop_xml_feature(csp_refinement_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: true |
|
Name: check_ref_result/1 |
Module: prob_cli |
Name: timeout_call/3 |
Module: prob_cli |
Name: ->/3 |
|
Name: start_xml_feature/4 |
Module: prob_cli |
Name: ajoin_with_sep/3 |
Module: tools_strings |
Name: loaded_main_file/1 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
cli_csp_translate_to_file(PlFile) :-
loaded_main_file(CSPFile),
parse_and_load_cspm_file_into_specific_pl_file(CSPFile,PlFile).
Calls:
Module: haskell_csp | |
Name: loaded_main_file/1 |
Module: prob_cli |
cli_ctl_model_check(Formula,Mode,ExpectedStatus,Status) :-
(option(ltl_limit(Max)) -> true; Max = -1), % -1 means no limit
start_xml_feature(ctl_model_check,formula,Formula,FINFO),
ctl_model_check(Formula,Max,Mode,Status),
write_xml_element_to_log(model_check_result,[status/Status,expected_status/ExpectedStatus,(mode)/Mode]),
check_status(Status,ExpectedStatus,Formula,ctl),
stop_xml_feature(ctl_model_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: check_status/4 |
Module: prob_cli |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: ctl_model_check/4 |
Module: foo_error |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: =/2 |
|
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
cli_eval_csp_expression(E) :-
(loaded_main_file(CSPFile) ->
evaluate_csp_expression(E, CSPFile, Res)
; evaluate_csp_expression(E,Res)
), print('Evaluated Expression: '),nl,print(Res),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Module: haskell_csp | |
Module: haskell_csp | |
Name: loaded_main_file/1 |
Module: prob_cli |
Name: ->/3 |
cli_execute(Steps,ErrorOnDeadlock,FromWhere) :-
temporary_set_preference(try_operation_reuse,false,ChangeOccured),
(ChangeOccured=true % operation reuse not compatible with cut used below after solution found
-> add_message(execute_model,'Disabling OPERATION_REUSE preference for -execute ',Steps) ; true),
call_cleanup(cli_execute2(Steps,ErrorOnDeadlock,FromWhere),
reset_temporary_preference(ChangeOccured)).
Calls:
Name: call_cleanup/2 |
|
Name: true |
|
Name: add_message/3 |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: temporary_set_preference/3 |
Module: foo_error |
cli_execute2(Steps,ErrorOnDeadlock,FromWhere) :-
FromWhere=from_all_initial_states,!,
% try out all initial states and from each of those perform deterministic execution
start_ms_timer(Start),
format('Running execute from all initial states~n',[]),
reset_counter(cli_execute_inits),
findall(Result,
(cli_trans(root,Action,CurState,0,'$NO_OPERATION'), %print(Action),nl,
(\+ functor(Action,'$setup_constants',_)
-> inc_counter(cli_execute_inits,Nr),
format('~nExecuting model from initial state ~w~n',[Nr]),
(option(animate_stats) -> print_state_silent(CurState) ; true),
(cli_execute_from(CurState,Steps,ErrorOnDeadlock,1,Result) -> true)
; format('~nInitialising state~n',[]), % we need to execute initialise_machine
cli_trans(CurState,_ActionName,NewState,0,'$NO_OPERATION'),
inc_counter(cli_execute_inits,Nr),
format('~nExecuting model from initial state ~w with constants~n',[Nr]),
(option(animate_stats) -> print_state_silent(NewState) ; true),
(cli_execute_from(NewState,Steps,ErrorOnDeadlock,2,Result) -> true)
)), Results),
get_counter(cli_execute_inits,Nr),
format('---------~nTotal runtime for all ~w executions:',[Nr]),nl,
stop_ms_timer(Start),
count_occurences(Results,Occs), format('Results: ~w~n',[Occs]).
cli_execute2(Steps,ErrorOnDeadlock,current_state(Repetitions)) :-
current_expression(ID,CurState),
start_xml_feature(execute,max_steps,Steps,FINFO),
start_ms_timer(Start),
(between(1,Repetitions,RepNr),
% with -strict option we will stop after first error found
% for repetitions you should probably set RANDOMISE_OPERATION_ORDER and RANDOMISE_ENUMERATION_ORDER to TRUE
debug_format(19,'Starting execute (~w/~w) from state ~w with maximum number of steps ~w~n',[RepNr,Repetitions,ID,Steps]),
(cli_execute_from(CurState,Steps,ErrorOnDeadlock,1,_Result) -> fail ; fail)
; Repetitions>1 -> stop_ms_timer_with_msg(Start,'-execute-repeat')
; true),
stop_xml_feature(execute,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: true |
|
Name: stop_ms_timer_with_msg/2 |
Module: tools |
Name: >/2 |
|
Name: ->/3 |
|
Name: fail |
|
Name: cli_execute_from/5 |
Module: prob_cli |
Name: debug_format/3 |
Module: foo_error |
Name: between/3 |
Module: between |
Name: start_ms_timer/1 |
Module: tools |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: current_expression/2 |
Module: state_space |
Name: format/2 |
|
Name: count_occurences/2 |
Module: tools_lists |
Name: stop_ms_timer/1 |
Module: tools |
Name: nl |
|
Name: get_counter/2 |
Module: counter/counter |
Name: findall/3 |
|
Name: reset_counter/1 |
Module: counter/counter |
Name: ! |
|
Name: =/2 |
cli_execute_add_virtual_transition(Steps,CurState,Result) :-
cli_execute_add_virtual_transition(Steps,CurState,Result,_).
Calls:
Module: prob_cli |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
Module: prob_cli |
cli_execute_add_virtual_transition(Steps,CurState,Result,ToID) :-
current_state_id(CurID),
write_xml_element_to_log(executed,[steps/Steps,result/Result]),
(Steps>0 -> %TODO: we could check whether this is actually useful for any outstanding command
debug_format(9,'Adding transition for ~w execution steps in state space~n',[Steps]),
tcltk_interface:tcltk_add_new_transition(CurID,'$execute'(Steps),ToID,CurState,[]),
debug_format(19,'Added transition ~w -> ~w to state space for ~w execution steps~n',[CurID,ToID,Steps]),
tcltk_goto_state('$execute'(Steps),ToID)
; true),
check_nr_of_steps(Steps).
Calls:
Name: check_nr_of_steps/1 |
Module: prob_cli |
Name: true |
|
Name: tcltk_goto_state/2 |
Module: foo_error |
Name: debug_format/3 |
Module: foo_error |
Module: tcltk_interface | |
Name: >/2 |
|
Name: ->/3 |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: current_state_id/1 |
Module: state_space |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
Module: prob_cli |
cli_execute_aux(Nr,Steps,CurState,_,_ErrorOnDeadlock,_LastActionName,Result) :- Nr>Steps,!,
formatsilent('Stopping execution after ~w steps~n',[Steps]), Result = stopped,
print_state_silent(CurState),
cli_execute_add_virtual_transition(Steps,CurState,Result).
cli_execute_aux(Nr,Steps,CurState0,MEMO,ErrorOnDeadlock,LastActionName,Result) :-
(Nr mod 5000 =:= 0, \+option(animate_stats), \+option(silent)
-> (var(LastActionName) -> format('Step ~w~n',[Nr])
; format('Step ~w (after ~w)~n',[Nr,LastActionName])),
(option_verbose -> print_state_silent(CurState0) ; true),
%copy_term(CurState0,CurState), tools_printing:print_term_summary((CurState0)),nl,
!,
garbage_collect,
!,
print('Memory used: '),print_memory_used_wo_gc,flush_output,nl %nl_time
; true),
prepare_state_for_specfile_trans(CurState0,unknown,MEMO,CurState), % ensure we memoize expanded constants in MEMO
% avoid re-expanding constants in every state !
% relevant e.g. for probcli -execute 20001 DataValidationTestSmallStep.mch -init
(cli_invariant_ko(CurState,LastActionName,InvStatus,CliErr) -> % also recognises no_inv command
N1 is Nr-1,
ajoin(['INVARIANT ',InvStatus,' after ',N1,' steps (after ',LastActionName,').'],ErrMsg),
format('~w~n',[ErrMsg]),!,
print_state_silent(CurState),
error_occurred_with_msg(CliErr,ErrMsg),
Result=CliErr,
cli_execute_add_virtual_transition(N1,CurState,Result,NewID),
%(option_verbose -> b_interpreter:analyse_invariant_for_state(NewID) ; true)
b_interpreter:analyse_invariant_for_state(NewID)
; cli_assertions_ko(CurState,LastActionName,AssRes) -> % also recognises no_inv command
N1 is Nr-1,
format('ASSERTIONS ~w after ~w steps (after ~w).~n',[AssRes,N1,LastActionName]),!,
print_state_silent(CurState),
error_occurred(assertion_violation), Result=assertion_violation,
cli_execute_add_virtual_transition(N1,CurState,Result)
; cli_goal_found(CurState) -> % also recognizes no_goal command
N1 is Nr-1,
format('GOAL FOUND after ~w steps (after ~w).~n',[N1,LastActionName]),!,
print_state_silent(CurState), Result=goal_found,
cli_execute_add_virtual_transition(N1,CurState,Result)
; reset_side_effect_occurred,
cli_trans(CurState,ActionName,NewState,Nr,LastActionName), % Compute new transition
!,
N1 is Nr+1,
(NewState=CurState0, % could be expensive for large states; states are expanded ! % TO DO: look only at written variables ?!
\+ side_effect_occurred(file)
-> formatsilent('Infinite loop reached after ~w steps (looping on ~w).~n',[N1,ActionName]),
Result=loop,
cli_execute_add_virtual_transition(N1,CurState,Result)
; cli_execute_aux(N1,Steps,NewState,MEMO,ErrorOnDeadlock,ActionName,Result))
).
cli_execute_aux(Nr,_Steps,CurState,_,_ErrorOnDeadlock,LastActionName,Result) :- execute_timeout_occurred,!,
N1 is Nr-1,
formatsilent('Timeout occurred after ~w steps (after ~w).~n',[N1,LastActionName]),
Result=time_out,
print_state_silent(CurState),
cli_execute_add_virtual_transition(N1,CurState,Result).
cli_execute_aux(Nr,_Steps,CurState,_,ErrorOnDeadlock,LastActionName,Result) :- N1 is Nr-1,
formatsilent('Deadlock reached after ~w steps (after ~w).~n',[N1,LastActionName]),
Result=deadlock,
(ErrorOnDeadlock=true,\+ option(no_deadlocks) -> error_occurred(deadlock) ; true),
print_state_silent(CurState),
cli_execute_add_virtual_transition(N1,CurState,Result).
Calls:
Module: prob_cli | |
Name: print_state_silent/1 |
Module: prob_cli |
Name: true |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: formatsilent/2 |
Module: foo_error |
Name: is/2 |
|
Name: ! |
|
Name: execute_timeout_occurred |
dynamic predicate |
Name: RECURSIVE_CALL/7 |
Module: prob_cli |
Name: side_effect_occurred/1 |
Module: external_functions |
Name: cli_trans/5 |
Module: prob_cli |
Module: external_functions | |
Name: format/2 |
|
Name: cli_goal_found/1 |
Module: prob_cli |
Name: cli_assertions_ko/3 |
Module: prob_cli |
Module: b_interpreter | |
Module: prob_cli | |
Module: prob_cli | |
Name: ajoin/2 |
Module: tools_strings |
Name: cli_invariant_ko/4 |
Module: prob_cli |
Name: prepare_state_for_specfile_trans/4 |
Module: foo_error |
Name: nl |
|
Name: flush_output |
|
Module: tools | |
Name: print/1 |
|
Name: garbage_collect |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: var/1 |
|
Name: =:=/2 |
|
Name: >/2 |
Called:
Name: cli_execute_from/5 |
Module: prob_cli |
cli_execute_from(CurState,Steps,ErrorOnDeadlock,FirstStepNr,Result) :-
retractall(max_walltime(_,_,_)),
retractall(execute_timeout_occurred),
start_ms_timer(Start),
(allow_filter_unused_constants -> temporary_set_preference(filter_unused_constants,true,CHNG) ; true),
cli_execute_aux(FirstStepNr,Steps,CurState,_MEMO,ErrorOnDeadlock,'$NO_OPERATION',Result),
(allow_filter_unused_constants -> reset_temporary_preference(filter_unused_constants,CHNG) ; true),
(option(silent) -> true ; stop_ms_timer_with_msg(Start,'-execute')),
print_max_walltime.
Calls:
Name: print_max_walltime/0 |
Module: prob_cli |
Name: stop_ms_timer_with_msg/2 |
Module: tools |
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: reset_temporary_preference/2 |
Module: foo_error |
Module: prob_cli | |
Name: cli_execute_aux/7 |
Module: prob_cli |
Name: temporary_set_preference/3 |
Module: foo_error |
Name: start_ms_timer/1 |
Module: tools |
Name: retractall/1 |
Called:
Name: cli_execute2/3 |
Module: prob_cli |
cli_execute_trans(CurState,ActionName,Act,NewState,LastActionName) :-
statistics(runtime,[StartExecuteForState,_]),
get_possible_next_operation_for_execute(CurState,LastActionName,ActionName),
start_check_disabled(ActionName,StartActionTime),
catch(
profile_single_call(ActionName,
unknown, % state Unknown
specfile_trans_with_check(CurState,ActionName,Act,NewState,Residue) % no time-out !
),
EXC,
(translate_exception(EXC,EMSG),
(nonvar(ActionName)
-> get_specification_description(operation,OP),
format_with_colour_nl(user_error,[red,bold],'~n*** ~w while executing ~w "~w"~n',[EMSG,OP,ActionName])
; get_specification_description(operations,OP),
format_with_colour_nl(user_error,[red,bold],'~n*** ~w while computing ~w~n',[EMSG,OP])
),
perform_feedback_options_after_exception,
throw(EXC))),
(Residue=[]
-> check_trans_time(StartExecuteForState,StartActionTime,ActionName)
; error_occurred(cli_execute_residue(ActionName,Residue,Act))).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: check_trans_time/3 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: catch/3 |
|
Name: start_check_disabled/2 |
Module: prob_cli |
Module: prob_cli | |
Name: statistics/2 |
cli_find_ltl_ap(APF) :-
if(ltl:find_atomic_property_formula(APF,ID),
(format('Found state (id = ~w) satisfying LTL atomic property.~n',[ID]),
tcltk_goto_state('LTL FIND',ID)),
format('No explored state satsifies LTL atomic property.~n',[])).
Calls:
Name: format/2 |
|
Name: tcltk_goto_state/2 |
Module: foo_error |
Module: ltl | |
Name: if/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
cli_generate_all_traces_until(LTL_Stop_AsAtom,FilePrefix) :-
generate_all_traces_until(LTL_Stop_AsAtom,FilePrefix,Result,NrTracesGenerated),
format_with_colour_nl(user_error,[blue],'Generated ~w traces, result=~w~n',[NrTracesGenerated,Result]).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: generate_all_traces_until/4 |
Module: foo_error |
cli_get_coverage_information(FileName) :-
pretty_print_coverage_information_to_file(FileName).
Calls:
Name: pretty_print_coverage_information_to_file/1 |
Module: foo_error |
cli_goal_found(_):- option(no_goal),!,fail.
cli_goal_found(CurState) :-
b_get_machine_goal(Goal),
state_corresponds_to_initialised_b_machine(CurState,BState),
profile_single_call('GOAL',unknown,cli_goal_found2(Goal,BState)).
Calls:
Name: profile_single_call/3 |
Module: runtime_profiler |
Name: state_corresponds_to_initialised_b_machine/2 |
Module: foo_error |
Name: b_get_machine_goal/1 |
Module: bmachine |
Name: fail |
|
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
cli_goal_found2(Goal,BState) :-
b_test_boolean_expression_for_ground_state(Goal,[],BState,'GOAL').
Calls:
Module: b_interpreter |
cli_init_options(ArgV,RemArgV) :- %print(argv(ArgV)),nl,
append(ProBArgV,['--'|BArgV],ArgV),!, % pass arguments after -- to B via external_functions
cli_init_options2(ProBArgV,RemArgV),
debug_println(20,set_argv_from_list(BArgV)),
external_functions:set_argv_from_list(BArgV).
cli_init_options(ArgV,RemArgV) :- cli_init_options2(ArgV,RemArgV).
Calls:
Name: cli_init_options2/2 |
Module: prob_cli |
Name: set_argv_from_list/1 |
Module: external_functions |
Name: debug_println/2 |
Module: foo_error |
Name: ! |
|
Name: append/3 |
Called:
Name: cli_set_options/2 |
Module: prob_cli |
cli_init_options2(ArgV,RemArgV) :-
reset_options,
%%assertz(option(log('/tmp/ProBLog.log'))), print('LOGGING'),nl, %% coment in to build a version of probcli that automatically logs
( get_options(ArgV,recognised_cli_option,Options,RemArgV,throw(halt(1))) ->
assert_all_options(Options)
;
print_error(get_options_failed(ArgV)),definite_error_occurred).
Calls:
Module: prob_cli | |
Name: print_error/1 |
Module: tools_printing |
Name: assert_all_options/1 |
Module: prob_cli |
Name: get_options/5 |
Module: tools |
Name: ->/3 |
|
Name: reset_options/0 |
Module: prob_cli |
Called:
Name: cli_init_options/2 |
Module: prob_cli |
cli_invariant_ko(_,_,_,_) :- option(no_invariant_violations),!,fail. % user asks not to check it
cli_invariant_ko(_,_,_,_) :- get_preference(do_invariant_checking,false),!,fail. % user asks not to check it via preference
cli_invariant_ko(CurState,LastActionName,ResInvStatus,CliError) :-
profile_single_call('INVARIANT',unknown,cli_invariant_ko2(CurState,LastActionName,ResInvStatus,CliError)).
Calls:
Name: profile_single_call/3 |
Module: runtime_profiler |
Name: fail |
|
Name: ! |
|
Name: get_preference/2 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
cli_invariant_ko2(CurState,LastActionName,ResInvStatus,CliError) :-
state_corresponds_to_initialised_b_machine(CurState,BState),!,
start_probcli_timer(InvTimer),
(b_specialized_invariant_for_op(LastActionName,Invariant) -> true
%, print('Specialized invariant: '),translate:print_bexpr(Invariant),nl
; b_get_invariant_from_machine(Invariant)),
cli_test_pred(BState,'INVARIANT',Invariant,ResInvStatus),
stop_probcli_debug_timer(InvTimer,'Finished Invariant Checking'),
ResInvStatus \= 'TRUE',
(ResInvStatus == 'FALSE' -> CliError = invariant_violation
; ResInvStatus == 'UNKNOWN' -> CliError = invariant_unknown
; ResInvStatus == 'TIME-OUT' -> CliError = invariant_time_out
; format_error_with_nl('Unexpected invariant status: ~w',[ResInvStatus]),
CliError= invariant_unknown).
Calls:
Name: =/2 |
|
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: ==/2 |
|
Name: ->/3 |
|
Name: \=/2 |
|
Module: prob_cli | |
Name: cli_test_pred/4 |
Module: prob_cli |
Module: bmachine | |
Name: true |
|
Module: bmachine | |
Name: start_probcli_timer/1 |
Module: prob_cli |
Name: ! |
|
Name: state_corresponds_to_initialised_b_machine/2 |
Module: foo_error |
cli_lint :- cli_lint(_).
Calls:
Name: cli_lint/1 |
Module: prob_cli |
Called:
Name: cli_lint/0 |
Module: prob_cli |
cli_lint(Check) :-
extended_static_check_machine(Check),
(unavailable_extension(visb_extension,_) -> true
; Check=visb -> extended_static_check_default_visb_file
; true).
Calls:
Name: true |
|
Name: extended_static_check_default_visb_file |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: unavailable_extension/2 |
Module: pathes_lib |
Module: bmachine_static_checks |
Called:
Name: cli_lint/0 |
Module: prob_cli |
cli_load_files([],NOW) :- % no files are provided
!,
( options_allow_start_without_file
-> debug_format(19,'Using empty machine to process probcli command~n',[]),
cli_set_empty_machine
; we_did_something -> true
; print('No file to process'),nl),
writeln_log_time(start_processing_empty_machine(NOW)),
start_xml_feature(process_file,filename,'$EMPTY_MACHINE',FINFO),
cli_process_loaded_file(NOW,'$EMPTY_MACHINE'),
check_all_expected_errors_occurred(NOW), % check that all expected errors occurred; below they will be checked for each file
stop_xml_feature(process_file,FINFO),
(option(benchmark_info_csv_output(_,_)) -> print_accumulated_infos(0) ; true).
cli_load_files(RemArgV,NOW) :-
cli_load_files2(RemArgV,NOW,0).
Calls:
Name: cli_load_files2/3 |
Module: prob_cli |
Name: true |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: stop_xml_feature/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: writeln_log_time/1 |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: we_did_something/0 |
Module: prob_cli |
Name: cli_set_empty_machine/0 |
Module: prob_cli |
Name: debug_format/3 |
Module: foo_error |
Module: prob_cli | |
Name: ! |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
cli_load_files2([],_,NrFilesProcessed) :- !,
debug_println(19,finished_procesing_all_files(NrFilesProcessed)),
print_accumulated_infos(NrFilesProcessed). % print summary of all runs for different files
cli_load_files2([F1,F2|T],NOW,_NrFilesProcessed) :-
option(Option),
option_only_works_for_single_file(Option),!,
add_error(probcli,'The following option can only be used for a single file: ',Option),
add_error(probcli,'Multiple files provided: ',[F1,F2|T]),
halt_prob(NOW,0).
cli_load_files2(RemArgV,NOW,NrFilesProcessed) :-
%print_total_probcli_timer,
clear_loaded_files,
retractall(file_loaded(_,_)),
RemArgV = [MainFile0|Rest],!,
N1 is NrFilesProcessed+1,
cli_load_files3(MainFile0,Rest,NOW,N1).
Calls:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: is/2 |
|
Name: ! |
|
Name: =/2 |
|
Name: retractall/1 |
|
Name: clear_loaded_files/0 |
Module: prob_cli |
Name: halt_prob/2 |
Module: prob_cli |
Name: add_error/3 |
Module: foo_error |
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Module: prob_cli | |
Name: debug_println/2 |
Module: foo_error |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
cli_load_files3(MainFile0,Rest,NOW,NrOfFile) :-
safe_absolute_file_name(MainFile0,MainFile,[access(none)]), % converts Windows slash into Unix slash,...
if_option_set(file_info,print_file_info(MainFile)),
((Rest=[_|_] ; NrOfFile>1)
-> length(Rest,RLen), Tot is NrOfFile+RLen,
format('~n~n% Processing file ~w/~w: ~w~n',[NrOfFile,Tot,MainFile]) % was formatsilent
; true),
start_xml_feature(process_file,filename,MainFile,FINFO),
( file_exists(MainFile) ->
debug_println(6,file_exists(MainFile)),
( load_main_file(MainFile,NOW,Already_FullyProcessed) ->
(Already_FullyProcessed==true
-> true
; assertz(file_loaded(true,MainFile)),
trimcore_if_useful(Rest),
writeln_log_time(start_processing(NOW)),
start_probcli_timer(Timer),
catch((cli_process_loaded_file(NOW,MainFile)
-> stop_probcli_debug_timer(Timer,'% Finished processing file after')
; print_error('Processing or loading file failed: '), print_error(MainFile),
start_repl_even_after_failure
),
user_interrupt_signal, % catch CTRL-C by user but give chance to enter REPL
start_repl_even_after_failure
),
writeln_log_time(finished_processing(NOW))
)
;
assertz(file_loaded(error,MainFile)),
print_error('Loading Specification Failed'),
writeln_log_time(loading_failed(NOW,MainFile)),
error_occurred(load_main_file)
%start_repl_even_after_failure : TODO: fix issues with bmachine not precompiled and counter extension
),
nls,
ifm_option_set(pretty_print_prolog_file(PPFILE0),
pretty_print_prolog_file(PPFILE0))
; % not file_exists
nl, assertz(file_loaded(error,MainFile)),
(number(MainFile0)
-> add_error(load_main_file,'Command-line argument is a number which is not associated with a command and does not exist as file: ',MainFile0)
; atom_codes(MainFile0,[45|_]) % starts with a dash - : probably an illegal command-line option
-> add_error(load_main_file,'Specified option or file does not exist: ',MainFile0)
; get_filename_extension(MainFile,Ext), \+ known_spec_file_extension(Ext,_)
-> (Ext = '' -> EMsg = 'Specified file does not exist and has no file extension:'
; ajoin(['Specified file does not exist and has an unrecognised file extension ".',Ext,'" :'], EMsg)
),
add_error(load_main_file,EMsg,MainFile)
; add_error(load_main_file,'Specified file does not exist:',MainFile)
)
),
check_all_expected_errors_occurred(NOW),
stop_xml_feature(process_file,FINFO),
debug_println(19,reset_expected_error_occurred),
reset_expected_error_occurred, % reset for next file
debug_println(19,resetting_errors),
reset_errors,
debug_println(19,update_time_stamp),
NOW1 is NOW+1,
update_time_stamp(NOW1),
debug_println(19,remaining_files_to_process(Rest)),
cli_load_files2(Rest,NOW1,NrOfFile).
Calls:
Name: cli_load_files2/3 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: update_time_stamp/1 |
Module: prob_cli |
Name: is/2 |
|
Name: reset_errors |
Module: foo_error |
Module: prob_cli | |
Name: stop_xml_feature/2 |
Module: prob_cli |
Module: prob_cli | |
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: =/2 |
|
Name: ->/3 |
|
Module: prob_cli | |
Name: not/1 |
|
Name: get_filename_extension/2 |
Module: tools |
Name: atom_codes/2 |
|
Name: number/1 |
|
Name: assertz/1 |
|
Name: nl |
|
Name: ifm_option_set/2 |
Module: prob_cli |
Name: nls |
Module: foo_error |
Name: error_occurred/1 |
Module: prob_cli |
Name: writeln_log_time/1 |
Module: foo_error |
Name: print_error/1 |
Module: tools_printing |
Name: catch/3 |
|
Name: start_probcli_timer/1 |
Module: prob_cli |
Name: trimcore_if_useful/1 |
Module: prob_cli |
Name: true |
|
Name: ==/2 |
|
Name: load_main_file/3 |
Module: prob_cli |
Name: file_exists/1 |
Module: file_systems |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: format/2 |
|
Name: length/2 |
|
Name: >/2 |
|
Name: if_option_set/2 |
Module: prob_cli |
Module: tools |
Called:
Name: cli_load_files2/3 |
Module: prob_cli |
cli_ltl_model_check(Formula,Mode,ExpectedStatus,Status) :-
(option(ltl_limit(Max)) -> true; Max = -1), % -1 means no limit
start_xml_feature(ltl_model_check,formula,Formula,FINFO),
ltl_model_check(Formula,Max,Mode,Status),
write_xml_element_to_log(model_check_result,[status/Status,expected_status/ExpectedStatus,(mode)/Mode]),
check_status(Status,ExpectedStatus,Formula,ltl),
stop_xml_feature(ltl_model_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: check_status/4 |
Module: prob_cli |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: ltl_model_check/4 |
Module: foo_error |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: =/2 |
|
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
cli_mc(Nr,Opts) :- probcli_time_stamp(NOW), cli_start_model_check(Nr,NOW,Opts).
Calls:
Name: cli_start_model_check/3 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
cli_option_not_available(Opt,ProBExtension,Reason) :-
probcli_command_requires_extension(Opt,ProBExtension),
unavailable_extension(ProBExtension,Reason).
Calls:
Name: unavailable_extension/2 |
Module: pathes_lib |
Module: pathes_extensions_db |
Called:
Module: prob_cli |
cli_print_all_values(ValuesDirname) :-
(write_all_values_to_dir(ValuesDirname) -> true ; add_error(sstxt,'Writing all values to directory failed: ',ValuesDirname)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Module: b_show_history | |
Name: ->/3 |
cli_print_history(HistFile) :-
findall( O, option(history_option(O)), Options),
debug_println(9,writing_history_to_file(HistFile)),
(select(trace_file,Options,ROpt) -> tcltk_save_history_as_trace_file(prolog,ROpt,HistFile) % save as Prolog trace file for replay with -t
; select(json,Options,ROpt) -> tcltk_save_history_as_trace_file(json,ROpt,HistFile) % save for replay with ProB2 UI
; write_history_to_file(HistFile,Options) -> true
; add_error(history,'Writing history to file failed: ',HistFile)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Name: write_history_to_file/2 |
Module: b_show_history |
Name: ->/3 |
|
Module: b_trace_checking | |
Name: select/3 |
Module: foo_error |
Name: debug_println/2 |
Module: foo_error |
Name: findall/3 |
cli_print_junit_results(ArgV) :-
junit_mode(S),!,
statistics(runtime,[E,_]),
T is E - S,
create_and_print_junit_result(['Integration Tests'],ArgV,T,pass).
cli_print_junit_results(_).
Calls:
Module: junit_tests | |
Name: is/2 |
|
Name: statistics/2 |
|
Name: ! |
|
Name: junit_mode/1 |
dynamic predicate |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
cli_print_machine_info(statistics) :-
b_machine_name(Name),
%(b_get_main_filename(File) -> true ; File=unknown),
format('Machine statistics for ~w:~n',[Name]),
findall(Key/Nr,b_machine_statistics(Key,Nr),L),
maplist(prob_cli:print_keynr,L),!.
cli_print_machine_info(files(WithSha)) :-
b_machine_name(Name),
(WithSha = with_sha -> Msg2='and SHA1 ' ; Msg2=''),
format('Files ~wused for machine ~w:~n',[Msg2,Name]),
b_get_all_used_filenames(Files),
maplist(prob_cli:print_individual_file(WithSha),Files),!.
cli_print_machine_info(hash(Expected)) :-
b_machine_name(MainName), % to do: findall machines and hashes
get_full_b_machine_sha_hash(HashBytes),
get_hex_bytes(HashBytes,Hash),
format('SHA hash for machine ~w = ~s~n',[MainName,Hash]),!,
write_xml_element_to_log(machine_hash,[hash/Hash]),
(var(Expected) -> true
; atom_codes(Expected,Hash)
-> format_with_colour_nl(user_output,[green],'Machine hash for ~w matches provided hash.',[MainName])
; add_error(machine_hash_check,'Unexpected machine hash, expected: ',Expected)).
cli_print_machine_info(Kind) :- add_error(machine_stats,'Could not obtain machine information:',Kind).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: atom_codes/2 |
|
Name: ->/3 |
|
Name: true |
|
Name: var/1 |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: ! |
|
Name: format/2 |
|
Name: get_hex_bytes/2 |
Module: tools_strings |
Module: bmachine | |
Name: b_machine_name/1 |
Module: bmachine |
Name: maplist/2 |
Module: foo_error |
Module: bmachine | |
Name: =/2 |
|
Name: findall/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
cli_print_pred_info(Pred) :- get_texpr_label(Pred,Label),
format('Label = ~w~n',[Label]),fail.
cli_print_pred_info(Pred) :- get_texpr_description(Pred,Desc),
format('Description = ~w~n',[Desc]),fail.
cli_print_pred_info(Pred) :-
option_verbose,
write('Predicate: '), translate:nested_print_bexpr(Pred),nl.
Calls:
Name: nl |
|
Name: nested_print_bexpr/1 |
Module: translate |
Name: write/1 |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: fail |
|
Name: format/2 |
|
Name: get_texpr_description/2 |
Module: bsyntaxtree |
Name: get_texpr_label/2 |
Module: bsyntaxtree |
cli_print_statistics(memory) :- !,
print_memory_statistics(user_output).
cli_print_statistics(sicstus_profile) :- !,
format('SICStus Prolog PROFILE STATISTICS~n',[]),
sicstus_profile_statistics.
cli_print_statistics(disprover_profile) :- !,
print_prover_result_stats.
cli_print_statistics(prob_profile) :- !,
statistics(walltime,[WT,_]),
statistics(runtime,[RT,_]),
format('--------------------------~nPROB PROFILING INFORMATION after ~w ms walltime (~w ms runtime) ',[WT,RT]),
statistics_memory_used(M), print_mb(M),nl,
print_source_profile,
print_runtime_profile,
print_memo_profile,
print_state_packing_profile,
print_external_function_instantiation_profile,
(get_preference(try_operation_reuse,false) -> true ; print_op_cache_profile).
cli_print_statistics(hit_profile) :- !,
(print_hit_profile_statistics -> true ; true). % mainly used by external functions
cli_print_statistics(op_cache_profile) :- !,
get_preference(try_operation_reuse,OR),
format('PROB OPERATION_REUSE (value:~w) STATISTICS~n',[OR]),
print_op_cache_profile.
cli_print_statistics(full) :- format('PROB FULL STATISTICS~n',[]),
sicstus_profile_statistics,
garbage_collect,
statistics,
nl,
(get_preference(try_operation_reuse,false) -> true ; print_op_cache_profile),
print_prover_result_stats,
state_space:state_space_initialise_with_stats,
reset_memo_with_statistics,
reset_b_operation_cache_with_statistics.
Calls:
Name: reset_b_operation_cache_with_statistics |
Module: foo_error |
Module: memoization | |
Module: state_space | |
Name: print_prover_result_stats |
Module: foo_error |
Name: print_op_cache_profile |
Module: foo_error |
Name: true |
|
Name: get_preference/2 |
Module: foo_error |
Name: ->/3 |
|
Name: nl |
|
Name: statistics |
|
Name: garbage_collect |
|
Module: prob_cli | |
Name: format/2 |
|
Name: ! |
|
Name: print_hit_profile_statistics |
Module: foo_error |
Module: external_functions | |
Module: state_packing | |
Name: print_memo_profile/0 |
Module: memoization |
Name: print_runtime_profile/0 |
Module: runtime_profiler |
Name: print_source_profile/0 |
Module: source_profiler |
Name: print_mb/1 |
Module: tools |
Name: statistics_memory_used/1 |
Module: tools |
Name: statistics/2 |
|
Module: prob_cli |
Called:
Name: call_probcli_option/1 |
Module: prob_cli |
Module: prob_cli |
cli_print_values(ValuesFilename) :-
(write_values_to_file(ValuesFilename) -> true ; add_error(sptxt,'Writing values to file failed: ',ValuesFilename)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Name: write_values_to_file/1 |
Module: b_show_history |
Name: ->/3 |
cli_process_loaded_file(NOW,MainFile) :-
(real_error_occurred -> print_error('% *** Errors occurred while loading ! ***'),nl,nl ; true),
get_errors, reset_errors,
if_option_set(kodkod_performance(KPFile,Iterations),
compare_kodkod_performance1(KPFile,Iterations,NOW)),
if_option_set(kodkod_comparision(MaxResiduePreds),
test_kodkod_and_exit(MaxResiduePreds,NOW)),
% if_option_set(add_csp_guide(CspGuide), tcltk_add_csp_file(CspGuide)), %% moved to later to ensure B machine is precompiled; allows e.g. type_check_csp_and_b to run
if_option_set(csp_main(MAINPROC),
set_cspm_main_process(MAINPROC)),
if_option_set(zmq_master(Identifier), zmq_start_master(invariant,Identifier)),
%if_option_set(zmq_master(IP, Logfile), zmq_start_master(invariant,200,-1,5000,0,IP,Logfile)),
ifm_option_set(check_machine_file_sha(FileToCheck,ExpectedSha1Hash),
check_machine_file_sha(FileToCheck,ExpectedSha1Hash)),
% STARTING ANIMATION/MODEL CHECKING
cli_start_animation(NOW),
if_option_set_loaded(cli_core_properties(MaxCoreSize),cli_core_properties,
cli_core_properties(MaxCoreSize)),
if_option_set_loaded(default_trace_check,default_trace_check,
cli_start_default_trace_check(MainFile)),
if_option_set_loaded(trace_check(TrStyle,TraceFile,ChkMode),trace_check,
cli_start_trace_check(TrStyle,TraceFile,ChkMode)),
cli_process_loaded_file_afer_start_animation(NOW).
Calls:
Module: prob_cli | |
Name: if_option_set_loaded/3 |
Module: prob_cli |
Name: cli_start_animation/1 |
Module: prob_cli |
Name: ifm_option_set/2 |
Module: prob_cli |
Name: if_option_set/2 |
Module: prob_cli |
Name: reset_errors |
Module: foo_error |
Name: get_errors/0 |
Module: prob_cli |
Name: true |
|
Name: nl |
|
Name: print_error/1 |
Module: tools_printing |
Name: real_error_occurred |
Module: foo_error |
Name: ->/3 |
Called:
Name: cli_load_files/2 |
Module: prob_cli |
Description:
TODO: replace
cli_process_loaded_file_afer_start_animation(NOW) :-
ifm_option_set(cli_print_machine_info(IKind),
cli_print_machine_info(IKind)),
ifm_option_set(pretty_print_internal_rep(PPFILE1,MachName1,TYPES1,ASCII1),
pretty_print_internal_rep(PPFILE1,MachName1,TYPES1,ASCII1)),
ifm_option_set(pretty_print_internal_rep_to_B(PPFILE3),
b_write_eventb_machine_to_classicalb_to_file(PPFILE3)),
if_option_set_loaded(state_trace(TraceFile),state_trace,
cli_start_trace_state_check(TraceFile)),
if_option_set(evaldot(EvalDotF),
set_eval_dot_file(EvalDotF)),
(initialise_required
-> check_loaded(initialise),
cli_start_initialisation(NOW),
writeln_log_time(initialised(NOW))
; true),
if_option_set(check_abstract_constants,
check_abstract_constants),
if_option_set(zmq_assertion(Identifier),
zmq_start_master(assertion,Identifier)),
if_option_set(cli_lint,cli_lint(_)),
ifm_option_set_loaded(cli_lint(LintCheck),cli_lint,cli_lint(LintCheck)),
if_option_set(cli_wd_check(Disch,TotPos),cli_wd_check(Disch,TotPos)),
if_option_set(cli_wd_inv_proof(UnchangedNr,ProvenNr,TotPOsNr),cli_wd_inv_proof(UnchangedNr,ProvenNr,TotPOsNr)),
if_option_set(cli_start_mc_with_tlc,cli_start_mc_with_tlc),
if_option_set(cli_start_sym_mc_with_lts(LType),cli_start_sym_mc_with_lts(LType)),
if_option_set(cli_symbolic_model_check(Algorithm),cli_symbolic_model_check(Algorithm)),
if_option_set_loaded(cli_check_properties,check_properties,
cli_check_properties(NOW)),
ifm_option_set_loaded(cli_check_assertions(ALL,ReqInfos),check_assertions,
cli_check_assertions(ALL,ReqInfos,NOW)),
if_option_set(set_goal(GOAL),
cli_set_goal(GOAL)),
if_option_set(set_searchscope(SCOPE),
cli_set_searchscope(SCOPE)),
ifm_option_set_loaded(cli_mc(Nr,MCOpts),model_check,
cli_start_model_check(Nr,NOW,MCOpts)),
ifm_option_set_loaded(cli_random_animate(Steps,ErrOnDeadlock),animate,
cli_random_animate(NOW,Steps,ErrOnDeadlock)),
ifm_option_set_loaded(execute(ESteps,ErrOnDeadlock,From),execute,
cli_execute(ESteps,ErrOnDeadlock,From)),
if_option_set_loaded(pa_check,predicate_analysis,
test_predicate_analysis),
cbc_check(NOW),
ifm_option_set_loaded(logxml_write_ids(Prefix,IDScope),logxml_write_ids,
logxml_write_ids(Prefix,IDScope)),
if_options_set(generate_read_write_matrix_csv(RWCsvFile),
generate_read_write_matrix(RWCsvFile)),
if_options_set(feasibility_analysis_csv(TimeOut,EnablingCsvFile),
do_feasibility_analysis(TimeOut,EnablingCsvFile)),
ifm_option_set_loaded(mcm_tests(ADepth1,AMaxS,ATarget1,Output1),mcm_test_cases,
mcm_test_case_generation(ADepth1,AMaxS,ATarget1,Output1)),
ifm_option_set_loaded(all_deadlocking_paths(File),all_deadlocking_paths,
write_all_deadlocking_paths_to_xml(File)),
ifm_option_set_loaded(cbc_tests(ADepth2,ATarget2,Output2),cb_test_cases,
cbc_test_case_generation(ADepth2,ATarget2,Output2)),
ifm_option_set_loaded(test_description(TestDescFile),cb_test_cases,
test_generation_by_xml_description(TestDescFile)),
if_options_set(csp_in_situ_refinement_check(RP,RType,RQ),
cli_csp_in_situ_refinement_check(RP,RType,RQ,NOW)),
if_options_set(csp_checkAssertion(Proc,Model,AssertionType),
cli_checkAssertion(Proc,Model,AssertionType,NOW)),
if_options_set(check_csp_assertion(Assertion),
cli_check_csp_assertion(Assertion,NOW)),
if_options_set(refinement_check(RefFile,PerformSingleFailures,RefNrNodes),
cli_start_refinement_check(RefFile,PerformSingleFailures,RefNrNodes,NOW)),
if_options_set(ctl_formula_model_check(Formula,Expected),cli_ctl_model_check(Formula,init,Expected,_)),
% TO DO print ctl/ltl statistics
if_options_set(csp_get_assertions,cli_csp_get_assertions),
if_options_set(eval_csp_expression(CspExpr),cli_eval_csp_expression(CspExpr)),
if_options_set(csp_translate_to_file(PlFile),cli_csp_translate_to_file(PlFile)),
if_options_set(get_coverage_information(CovFileName),cli_get_coverage_information(CovFileName)), %% TODO: replace
if_options_set(vacuity_check,cli_vacuity_check),
if_option_set_loaded(check_goal,check_goal,cli_check_goal),
if_option_set_loaded(animate,animate,
(interactive_animate_machine -> true ; true)),
if_option_set(ltsmin, start_ltsmin_srv('/tmp/ltsmin.probz', NOW)),
if_option_set(ltsmin2(EndpointPath), start_ltsmin_srv(EndpointPath, NOW)),
if_option_set(ltsmin_ltl_output(Path), ltsmin_ltl_output(Path, NOW)),
if_options_set(run_benchmark(Kind,Option,Path), run_benchmark(Kind,Option,Path)),
evaluate_from_commandline,
if_option_set_loaded(ltl_assertions,check_ltl_assertions,
(timeout_call(ltl_check_assertions,NOW,check_ltl_assertions) -> true; true)),
ifm_option_set_loaded(ltl_formula_model_check(Formula,Expected),check_ltl_assertions,
(option(cli_start_sym_mc_with_lts(_))-> true % we request LTSMin, do not start prob model check
; timeout_call(cli_ltl_model_check(Formula,init,Expected,_),NOW,check_ltl_assertions)
-> true; true)),
ifm_option_set_loaded(ltl_file(LtlFilename),check_ltl_file,
(ltl_check_file(LtlFilename) -> true; true)),
ifm_option_set_loaded(visb_history(VJSONFile,VHTMLFile,Options),visb,
cli_visb_history(VJSONFile,VHTMLFile,Options)),
ifm_option_set_loaded(history(HistoryFilename),history,
cli_print_history(HistoryFilename)),
ifm_option_set_loaded(print_values(ValuesFilename),sptxt,
cli_print_values(ValuesFilename)),
ifm_option_set_loaded(print_all_values(ValuesDirname),print_all_values,
cli_print_all_values(ValuesDirname)),
ifm_option_set_loaded(generate_all_traces_until(LTL_Stop_AsAtom,FilePrefix),generate_all_traces_until,
cli_generate_all_traces_until(LTL_Stop_AsAtom,FilePrefix)),
if_options_set(save_state_for_refinement(SaveRefF),
tcltk_save_specification_state_for_refinement(SaveRefF)),
if_options_set(rule_report(File),
rule_validation:generate_html_report(File)),
if_options_set(dot_command(DCommand1,DotFile1,DotEngine1),
dot_command(DCommand1,DotFile1,DotEngine1)),
if_options_set(dot_command_for_expr(DECommand,Expr,DotFile,Opts,DotEngine),
dot_command_for_expr(DECommand,Expr,DotFile,Opts,DotEngine)),
if_options_set(plantuml_command(PCommand1,UmlFile1),
plantuml_command(PCommand1,UmlFile1)),
if_options_set(plantuml_command_for_expr(PECommand,Expr,UmlFile,Opts),
plantuml_command_for_expr(PECommand,Expr,UmlFile,Opts)),
if_options_set(csv_table_command(TECommand,TableFormulas,TableOptions,TableCSVFile),
csv_table_command(TECommand,TableFormulas,TableOptions,TableCSVFile)),
if_options_set(evaluate_expression_over_history_to_csv_file(HistExpr,HistDotFile),
tcltk_interface:evaluate_expression_over_history_to_csv_file(HistExpr,HistDotFile)),
if_options_set(enabling_analysis_csv(EnablingCsvFile),
do_enabling_analysis_csv(EnablingCsvFile,NOW)),
if_options_set(process_latex_file(LatexF1,LatexF2),
process_latex_file(LatexF1,LatexF2)),
ifm_option_set(coverage(Nodes,Operations,ShowEnabledInfo),
cli_show_coverage(Nodes,Operations,ShowEnabledInfo,NOW)),
ifm_option_set(check_statespace_hash(ExpectedHash,Kind),
cli_check_statespace_hash(ExpectedHash,Kind)),
ifm_option_set(check_op_cache(ExpectedC),
cli_check_op_cache(ExpectedC)),
ifm_option_set(coverage(ShowEnabledInfo),
cli_show_coverage(ShowEnabledInfo,NOW)),
if_option_set(save_state_space(StateFile),
save_state_space(StateFile)),
ifm_option_set(cli_print_statistics(SPARA),
cli_print_statistics(SPARA)),
if_option_set(show_cache(SCVM),
show_cache(SCVM)),
if_option_set(check_complete, check_complete),
if_option_set(check_complete_operation_coverage, check_complete_operation_coverage),
if_option_set(check_scc_for_ltl_formula(LtlFormula,SCC),cli_check_scc_for_ltl_formula(LtlFormula,SCC)).
Calls:
Name: if_option_set/2 |
Module: prob_cli |
Name: ifm_option_set/2 |
Module: prob_cli |
Name: if_options_set/2 |
Module: prob_cli |
Name: ifm_option_set_loaded/3 |
Module: prob_cli |
Name: if_option_set_loaded/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cbc_check/1 |
Module: prob_cli |
Name: true |
|
Name: writeln_log_time/1 |
Module: foo_error |
Module: prob_cli | |
Name: check_loaded/1 |
Module: prob_cli |
Name: initialise_required/0 |
Module: prob_cli |
Name: ->/3 |
Called:
Module: prob_cli | |
Name: zmq_start_worker/2 |
Module: prob_cli |
cli_process_options_for_alrady_fully_processed_file(_MainFile) :-
ifm_option_set(cli_print_statistics(SPARA),
cli_print_statistics(SPARA)).
Calls:
Name: ifm_option_set/2 |
Module: prob_cli |
Called:
Name: load_spec_file/3 |
Module: prob_cli |
cli_random_animate(Steps,Err) :- probcli_time_stamp(NOW),
cli_random_animate(NOW,Steps,Err).
Calls:
Name: cli_random_animate/3 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Called:
Name: cli_random_animate/2 |
Module: prob_cli |
cli_random_animate(_NOW,Steps,ErrorOnDeadlock) :-
start_xml_feature(random_animate,max_steps,Steps,FINFO),
start_ms_timer(Start),
perform_random_steps(Steps,ErrorOnDeadlock),
(option(silent) -> true ; stop_ms_timer_with_msg(Start,'-animate')),
%tcltk_save_history_as_trace_file(prolog,user),
stop_xml_feature(random_animate,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: stop_ms_timer_with_msg/2 |
Module: tools |
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: perform_random_steps/2 |
Module: prob_cli |
Name: start_ms_timer/1 |
Module: tools |
Name: start_xml_feature/4 |
Module: prob_cli |
Called:
Name: cli_random_animate/2 |
Module: prob_cli |
cli_set_empty_machine :- % TO DO: do this more properly here and for initialise_required
% announce_event(clear_specification),
set_animation_mode(b),
% announce_event(start_initialising_specification),
bmachine:b_set_empty_machine,
assertz(file_loaded(true,'$$empty_machine')).
Calls:
Name: assertz/1 |
|
Name: b_set_empty_machine/0 |
Module: bmachine |
Name: set_animation_mode/1 |
Module: foo_error |
Called:
Name: load_spec_file/2 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
cli_set_goal(GOAL) :-
debug_println(20,set_goal(GOAL)), %print(set_goal(GOAL)), nl,
(bmachine:b_set_machine_goal(GOAL) -> true
; add_error(scope,'Setting GOAL predicate failed:',GOAL)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Name: b_set_machine_goal/1 |
Module: bmachine |
Name: ->/3 |
|
Name: debug_println/2 |
Module: foo_error |
Description:
adds -ll to have an automatically logging probcli to /tmp/prob_cli_debug.log
cli_set_options(ArgV,RemArgV) :- cli_init_options(ArgV,RemArgV).
Calls:
Name: cli_init_options/2 |
Module: prob_cli |
Called:
Name: run_probcli2/1 |
Module: prob_cli |
cli_set_searchscope(GOAL) :-
debug_println(20,set_searchscope(GOAL)),
format('Setting SCOPE for verification: ~w~n (Only states satsifying this predicate will be examined)~n',[GOAL]),
(bmachine:b_set_machine_searchscope(GOAL) -> true
; add_error(scope,'Setting model checking search SCOPE failed:',GOAL)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Module: bmachine | |
Name: ->/3 |
|
Name: format/2 |
|
Name: debug_println/2 |
Module: foo_error |
cli_show_coverage(ShowEnabledInfo,NOW) :-
cli_show_coverage(_Nodes,_Operations,ShowEnabledInfo,NOW).
Calls:
Name: cli_show_coverage/4 |
Module: prob_cli |
Called:
Name: cli_show_coverage/2 |
Module: prob_cli |
cli_show_coverage(Nodes,Operations,ShowEnabledInfo,NOW) :-
ShowEnabledInfo == just_check_stats,!, % no printing of individual transition coverage
get_state_space_stats(TotalNodeSum,TotalTransSum,_ProcessedTotal,_), % no computation overhead
writeln_log(computed_coverage(NOW,TotalNodeSum,TotalTransSum)),
check_totals(Nodes,Operations,TotalNodeSum,TotalTransSum).
cli_show_coverage(Nodes,Operations,ShowEnabledInfo,NOW) :-
ShowEnabledInfo == just_summary,
!, % no printing of detailed transition coverage (avoid traversing state space)
get_state_space_stats(TotalNodeSum,TotalTransSum,ProcessedTotal,Ignored), % no computation overhead
writeln_log(computed_coverage(NOW,TotalNodeSum,TotalTransSum)),
format('Coverage:~n States: ~w (~w processed, ~w ignored)~n Transitions: ~w~n',
[TotalNodeSum,ProcessedTotal,Ignored,TotalTransSum]),
show_initialisation_summary(NOW),
show_operation_coverage_summary(NOW),
(invariant_violated(ID) -> format('At least one state violates the invariant (~w) ~n',[ID]) ; true),
check_totals(Nodes,Operations,TotalNodeSum,TotalTransSum).
cli_show_coverage(Nodes,Operations,ShowEnabledInfo,NOW) :-
print('Coverage:'),nl,
compute_the_coverage(Res,TotalNodeSum,TotalTransSum,ShowEnabledInfo,false),
writeln_log(computed_coverage(NOW,TotalNodeSum,TotalTransSum)),
print(Res),nl,
check_totals(Nodes,Operations,TotalNodeSum,TotalTransSum).
Calls:
Name: check_totals/4 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
|
Name: writeln_log/1 |
Module: foo_error |
Name: compute_the_coverage/5 |
Module: foo_error |
Name: true |
|
Name: format/2 |
|
Name: invariant_violated/1 |
Module: state_space |
Name: ->/3 |
|
Module: prob_cli | |
Module: prob_cli | |
Name: get_state_space_stats/4 |
Module: state_space |
Name: ! |
|
Name: ==/2 |
Called:
Name: cli_show_coverage/2 |
Module: prob_cli |
cli_show_help(ArgV,RemArgV) :-
( (option(help) ; ArgV=[]) ->
print_help, (RemArgV=[] -> halt_exception ; true)
; true).
Calls:
Name: true |
|
Name: halt_exception/0 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: print_help/0 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
cli_start_animation(NOW) :-
file_loaded(true,LoadedFile),
\+ animation_mode_does_not_support_animation(LoadedFile),
!,
debug_println(20,'% Starting Animation'),
writeln_log_time(start_animation(NOW)),
start_probcli_timer(Timer1),
start_animation_without_computing,
stop_probcli_debug_timer(Timer1,'% Finished Starting Animation'),
if_option_set(add_csp_guide(CspGuide), tcltk_add_csp_file(CspGuide)),
xml_log_machine_statistics,
getAllOperations(Ops),
debug_print(20,'Operations: '), debug_println(20,Ops),
(we_need_only_static_assertions(ALL)
-> debug_println(20,'% Projecting on static ASSERTIONS'),
b_interpreter:set_projection_on_static_assertions(ALL) ; true),
(option(load_state(File))
-> debug_println(20,'% Loading stored state from file'),
state_space:tcltk_load_state(File)
; computeOperations_for_root_required ->
debug_println(20,'% Searching for valid initial states'),
start_probcli_timer(Timer2),
cli_computeOperations(EO),
stop_probcli_debug_timer(Timer2,'% Finished searching for valid initial states'),
debug_println(10,EO)
; debug_println(20,'% No initialisation required')
).
cli_start_animation(_NOW).
Calls:
Name: debug_println/2 |
Module: foo_error |
Module: prob_cli | |
Name: cli_computeOperations/1 |
Module: prob_cli |
Name: start_probcli_timer/1 |
Module: prob_cli |
Module: prob_cli | |
Name: ->/3 |
|
Name: tcltk_load_state/1 |
Module: state_space |
Name: option/1 |
dynamic predicate |
Name: true |
|
Module: b_interpreter | |
Module: prob_cli | |
Name: debug_print/2 |
Module: foo_error |
Name: getAllOperations/1 |
Module: foo_error |
Module: prob_cli | |
Name: if_option_set/2 |
Module: prob_cli |
Module: prob_cli | |
Name: writeln_log_time/1 |
Module: foo_error |
Name: ! |
|
Module: prob_cli | |
Name: not/1 |
|
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: reload_mainfile/0 |
Module: prob_cli |
Module: prob_cli |
cli_start_default_trace_check(MainFile) :-
debug_println(20,'% Starting Default Trace Check: '),
(check_default_trace_for_specfile(MainFile) -> true ; error_occurred(trace_check)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Module: b_trace_checking | |
Name: ->/3 |
|
Name: debug_println/2 |
Module: foo_error |
Called:
Name: default_trace_check/0 |
Module: prob_cli |
cli_start_initialisation(NOW) :-
debug_println(20,'% Performing INITIALISATION: '),
(perform_random_initialisation -> true ;
writeln_log_time(cli_start_initialisation_failed(NOW)),
fail).
Calls:
Name: fail |
|
Name: writeln_log_time/1 |
Module: foo_error |
Name: true |
|
Module: prob_cli | |
Name: ->/3 |
|
Name: debug_println/2 |
Module: foo_error |
Called:
Module: prob_cli | |
Name: initialise/0 |
Module: prob_cli |
Name: reload_mainfile/0 |
Module: prob_cli |
cli_start_logging(F,Mode,NOW,Datime,RemArgV) :-
debug_print(20,'%logging to: '), debug_println(20,F),
set_log_file(F), set_logging_mode(Mode),
start_xml_group_in_log('probcli-run'),
writeln_log(start_logging(NOW,F)),
version(V1,V2,V3,Suffix), revision(Rev), lastchangeddate(LCD),
writeln_log(version(NOW,V1,V2,V3,Suffix,Rev,LCD)), % still used by log_analyser
current_prolog_flag(version,PV),
write_xml_element_to_log(version,[major/V1,minor/V2,patch/V3,suffix/Suffix,revision/Rev,lastchanged/LCD,prolog/PV]),
findall(Opt, option(Opt), Options),
write_prolog_term_as_xml_to_log(options(NOW,Options)),
write_prolog_term_as_xml_to_log(files(NOW,RemArgV)),
datime(Datime,DateRecord),
writeln_log(date(NOW,DateRecord)),
(DateRecord=datime(Yr,Mon,Day,Hr,Min,Sec)
-> write_xml_element_to_log(date,[year/Yr,month/Mon,day/Day,hour/Hr,minutes/Min,seconds/Sec]) ; true).
Calls:
Name: true |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: writeln_log/1 |
Module: foo_error |
Name: datime/2 |
Module: foo_error |
Name: write_prolog_term_as_xml_to_log/1 |
Module: foo_error |
Name: findall/3 |
|
Name: current_prolog_flag/2 |
|
Name: lastchangeddate/1 |
Module: foo_error |
Name: revision/1 |
Module: foo_error |
Name: version/4 |
Module: foo_error |
Name: start_xml_group_in_log/1 |
Module: foo_error |
Name: set_logging_mode/1 |
Module: foo_error |
Name: set_log_file/1 |
Module: foo_error |
Name: debug_println/2 |
Module: foo_error |
Name: debug_print/2 |
Module: foo_error |
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
cli_start_mc_with_tlc :-
(animation_mode(b), \+ animation_minor_mode(eventb) -> true
; error_manager: add_error_and_fail(mc_with_tlc,'TLC4B tool can be used only for classical B models.')),
% TO DO: use b_write_eventb_machine_to_classicalb_to_file to do conversion
catch(
safe_absolute_file_name(prob_lib('TLC4B.jar'),TLC4BTool),
error(E,_),
error_manager:add_error_fail(get_tlc_command,'Could not find TLC4B.jar file.',E)),
start_xml_feature(model_check_with_tlc,tlc4bjar,TLC4BTool,FINFO),
construct_and_execute_tlc_command(TLC4BTool),
stop_xml_feature(model_check_with_tlc,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Module: prob_cli | |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: catch/3 |
|
Name: add_error_and_fail/2 |
Module: error_manager |
Name: true |
|
Name: animation_minor_mode/1 |
Module: foo_error |
Name: not/1 |
|
Name: animation_mode/1 |
Module: foo_error |
Name: ->/3 |
cli_start_model_check(Nr,NOW,Options) :-
(member(reset_state_space,Options)
-> formatsilent('Resetting state space for benchmarking model checking (limit:~w, options:~w)~n',[Nr, Options]),
announce_event(reset_specification) % for benchmarking purposes
%,state_space:portray_state_space,nl
; true),
start_xml_feature(model_check,max_states,Nr,FINFO),
regular_safety_model_check_now(Nr,Time,WallTime,MCRes,NOW),
%nl,
stop_xml_feature(model_check,FINFO),
get_state_space_stats(TS,TT,PT,IgnT),
statistics_memory_used(Mem),
(MCRes=time_out -> TInfos=[timeout/1] ; TInfos=[]),
accumulate_infos(model_check,[runtime-Time,walltime-WallTime, % mc only runtime, and total wall time
processed_states/PT,total_states/TS,total_transitions/TT,
ignored_states/IgnT, memory_used/Mem|TInfos]), %for bench_csv output
writeln_log_time(model_check(NOW,Nr,Time,WallTime,MCRes)),
(select(repeat(RepNr),Options,RestOptions)
-> (RepNr>1
-> N1 is RepNr-1,
cli_start_model_check(Nr,NOW,[repeat(N1)|RestOptions])
; merge_accumulated_infos(model_check)
)
; true
).
Calls:
Name: true |
|
Module: prob_cli | |
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: is/2 |
|
Name: >/2 |
|
Name: ->/3 |
|
Name: select/3 |
Module: foo_error |
Name: writeln_log_time/1 |
Module: foo_error |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: =/2 |
|
Name: statistics_memory_used/1 |
Module: tools |
Name: get_state_space_stats/4 |
Module: state_space |
Name: stop_xml_feature/2 |
Module: prob_cli |
Module: prob_cli | |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: announce_event/1 |
Module: eventhandling |
Name: formatsilent/2 |
Module: foo_error |
Name: member/2 |
cli_start_refinement_check(RefFile,PerformSingleFailures,RefNrNodes,NOW) :-
start_xml_feature(refinement_check,file,RefFile,FINFO),
tcltk_load_refine_spec_file(RefFile),
( timeout_call(tcltk_refinement_search(RefTrace,PerformSingleFailures,RefNrNodes),NOW,refinement_check)
-> check_ref_result(RefTrace)
; true),
stop_xml_feature(refinement_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: true |
|
Name: check_ref_result/1 |
Module: prob_cli |
Name: timeout_call/3 |
Module: prob_cli |
Name: ->/3 |
|
Name: tcltk_load_refine_spec_file/1 |
Module: foo_error |
Name: start_xml_feature/4 |
Module: prob_cli |
cli_start_selfcheck :-
%clear_loaded_machines_wo_errors,
b_set_initial_machine,
set_animation_mode(b),
store_virtual_event(clear_specification), % TO DO: try and get rid of the need for this
start_animation,
option(selfcheck(ModuleCombo,Opts)),
(atom(ModuleCombo),
atom_split(Module,':',TestNrA,ModuleCombo)
-> convert_atom_to_number(TestNrA,TestNr),
Opts2=[run_only_nr(TestNr)|Opts]
; Module=ModuleCombo, Opts2=Opts
),
(option(silent) -> Opts3=[silent|Opts2] ; option_verbose -> Opts3=[verbose|Opts2] ; Opts3=Opts2),
(perform_self_check(Module,Opts3) -> true ; error_occurred(selfcheck)),
fail.
cli_start_selfcheck.
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Name: perform_self_check/2 |
Module: self_check |
Name: ->/3 |
|
Name: =/2 |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Name: convert_atom_to_number/2 |
Module: tools_strings |
Name: atom_split/4 |
Module: tools_strings |
Name: atom/1 |
|
Name: start_animation/0 |
Module: prob2_interface |
Name: store_virtual_event/1 |
Module: eventhandling |
Name: set_animation_mode/1 |
Module: foo_error |
Name: b_set_initial_machine/0 |
Module: bmachine |
cli_start_socketserver(Port,Loopback) :-
printsilent('Starting Socket Server'),nls,
safe_absolute_file_name(prob_home('.'),AppDir),
printsilent('Application Path: '),printsilent(AppDir),nls,
disable_interaction_on_errors,
( start_prob_socketserver(Port,Loopback) -> true
;
print('Starting socket server failed, Port: '), print(Port),nl),
printsilent('Finished Socket Server'),nls.
Calls:
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: true |
|
Module: prob_socketserver | |
Name: ->/3 |
|
Module: self_check | |
Module: tools |
cli_start_sym_mc_with_lts(SymbolicOrSequential) :-
(option(no_deadlocks) -> NoDead = true ; NoDead = false),
(option(no_invariant_violations) -> NoInv = true ; NoInv = false), % does LTSMin support goal checking
findall(Option,option(ltsmin_option(Option)),MoreFlags1),
findall(ltl_formula(LTLF),option(ltl_formula_model_check(LTLF,_)),MoreFlags2),
append(MoreFlags1,MoreFlags2,MoreFlags),
(NoDead = false, NoInv = false ->
print_error('ERROR: cannot start LTSmin with both deadlock and invariant checking'),
print_error(' use either the -noinv or -nodead flag'),
flush_output(user_error)
; true),
formatsilent('starting prob2lts-sym/seq (flags nodead=~w, noinv=~w, moreflags=~w)~n',[NoDead,NoInv,MoreFlags]),
statistics(walltime,[W1,_]),
start_ltsmin(SymbolicOrSequential, [NoDead, NoInv], MoreFlags,Result),
process_ltsmin_result(Result,AccInfos),
statistics(walltime,[W2,_]), WT is W2-W1,
accumulate_infos(mc_with_lts_min(SymbolicOrSequential),[walltime-WT|AccInfos]).
Calls:
Name: accumulate_infos/2 |
Module: prob_cli |
Name: is/2 |
|
Name: statistics/2 |
|
Name: process_ltsmin_result/2 |
Module: prob_cli |
Name: start_ltsmin/4 |
Module: ltsmin/ltsmin |
Name: formatsilent/2 |
Module: foo_error |
Name: true |
|
Name: flush_output/1 |
|
Name: print_error/1 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Name: append/3 |
|
Name: findall/3 |
|
Name: option/1 |
dynamic predicate |
cli_start_trace_check(json,File,default_trace_replay) :- !,
replay_json_trace_file(File,Status),
(Status=perfect -> true
; Status = imperfect(_) -> add_warning(trace_replay,'Imperfect JSON trace replay:',Status)
; add_error(trace_replay,'Failed JSON trace replay:',Status)
).
cli_start_trace_check(Style,File,Mode) :-
debug_format(20,'% Starting Trace Check (~w:~w): ~w~n',[Style,Mode,File]),
(tcltk_check_sequence_from_file(Style,File,Mode) -> true ; error_occurred(trace_check)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Module: b_trace_checking | |
Name: ->/3 |
|
Name: debug_format/3 |
Module: foo_error |
Name: add_error/3 |
Module: foo_error |
Name: add_warning/3 |
Module: foo_error |
Name: =/2 |
|
Name: replay_json_trace_file/2 |
Module: b_intelligent_trace_replay |
Name: ! |
cli_start_trace_state_check(File) :-
debug_println(20,'% Starting Trace Check: '),
(tcltk_check_state_sequence_from_file(File) -> true ; error_occurred(state_trace)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Module: b_trace_checking | |
Name: ->/3 |
|
Name: debug_println/2 |
Module: foo_error |
cli_symbolic_model_check(Algorithm) :-
debug_format(20,'% Starting Symbolic Model Check. Using ~w Algorithm', [Algorithm]),
start_xml_feature(model_check,algorithm,Algorithm,FINFO),
(animation_mode(b)
-> true
; error_manager:add_error_and_fail(cli_symbolic_model_check,'Symbolic Model Checking is currently only available for B and Event-B.')),
perform_symbolic_model_checking(Algorithm,Result),
handle_symbolic_model_check_result(Result),
stop_xml_feature(model_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: add_error_and_fail/2 |
Module: error_manager |
Name: true |
|
Name: animation_mode/1 |
Module: foo_error |
Name: ->/3 |
|
Name: start_xml_feature/4 |
Module: prob_cli |
Name: debug_format/3 |
Module: foo_error |
cli_test_pred(BState,PredKind,Pred) :- cli_test_pred(BState,PredKind,Pred,'TRUE').
Calls:
Name: cli_test_pred/4 |
Module: prob_cli |
Called:
Name: cli_assertions_ko2/3 |
Module: prob_cli |
Name: cli_test_pred/3 |
Module: prob_cli |
Name: cli_invariant_ko2/4 |
Module: prob_cli |
cli_test_pred(BState,PredKind,Pred,Res) :- option(timeout(TO)),!,
debug_format(9,'Testing ~w with time-out ~w~n',[PredKind,TO]),
safe_time_out(cli_test_pred2(BState,PredKind,Pred,Res), TO, TRes),
(Res=time_out -> TRes='TIME-OUT' ; true).
cli_test_pred(BState,PredKind,Pred,Res) :-
debug_format(9,'Checking ~w without a time-out~n',[PredKind]),
cli_test_pred2(BState,PredKind,Pred,Res).
Calls:
Name: cli_test_pred2/4 |
Module: prob_cli |
Name: debug_format/3 |
Module: foo_error |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: safe_time_out/3 |
Module: tools_meta |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_assertions_ko2/3 |
Module: prob_cli |
Name: cli_test_pred/3 |
Module: prob_cli |
Name: cli_invariant_ko2/4 |
Module: prob_cli |
cli_test_pred2(BState,PredKind,Pred,Res) :-
% currently does not do a time-out: % b_interpreter calls: time_out_with_enum_warning_one_solution_no_new_error_scope
catch(
on_enumeration_warning(b_test_boolean_expression_for_ground_state(Pred,[],BState,PredKind ), (
add_error(cli_test_pred,'Enumeration warning while testing',PredKind,Pred),
cli_print_pred_info(Pred),
Res='UNKNOWN')
),
E,
(
ajoin(['VIRTUAL TIME-OUT or exception while testing ',PredKind,': '],Msg),
add_error(cli_test_pred,Msg,E,Pred), % E can also be user_interrupt_signal
cli_print_pred_info(Pred),
Res='UNKNOWN'
)
),
!,
(var(Res) -> Res = 'TRUE' ; true).
cli_test_pred2(_BState,_PredKind,_Pred,'FALSE').
Calls:
Name: true |
|
Name: =/2 |
|
Name: var/1 |
|
Name: ->/3 |
|
Name: ! |
|
Name: catch/3 |
Called:
Name: cli_test_pred/4 |
Module: prob_cli |
cli_trans(CurState,ActionName,NewState,Nr,LastActionName) :-
option(animate_stats),!, % provide statistics about the animation
start_probcli_timer(Timer),
cli_trans_aux(CurState,ActionName,Act,NewState,Nr,LastActionName),
(option_verbose -> translate:translate_event(Act,TStr)
; translate:translate_event_with_limit(Act,100,TStr)),
format('~w~5|: ~w~n',[Nr,TStr]),
format(' ~5|',[]),stop_probcli_timer(Timer,' '),
(option_verbose -> format(' ~5|',[]),print_memory_used_wo_gc,nl ; true),
flush_output,
get_probcli_elapsed_walltime(Timer,WallTime),
get_probcli_elapsed_runtime(Timer,RunTime),
accumulate_infos(animate_stats,[step-1,step_nr-Nr,runtime-RunTime,walltime-WallTime]),
(max_walltime(_,_,MWT), MWT >= WallTime -> true
; retractall(max_walltime(_,_,_)),
assertz(max_walltime(ActionName,Nr,WallTime))).
cli_trans(CurState,ActionName,NewState,Nr,LastActionName) :-
cli_trans_aux(CurState,ActionName,_,NewState,Nr,LastActionName).
Calls:
Name: cli_trans_aux/6 |
Module: prob_cli |
Name: assertz/1 |
|
Name: retractall/1 |
|
Name: true |
|
Name: >=/2 |
|
Name: max_walltime/3 |
dynamic predicate |
Name: ->/3 |
|
Name: accumulate_infos/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: flush_output |
|
Name: nl |
|
Module: tools | |
Name: format/2 |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: stop_probcli_timer/2 |
Module: prob_cli |
Module: translate | |
Name: translate_event/2 |
Module: translate |
Name: start_probcli_timer/1 |
Module: prob_cli |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
cli_trans_aux(CurState,ActionName,Act,NewState,Nr,LastActionName) :-
option(timeout(TO)),!,
safe_time_out(cli_trans_aux2(CurState,ActionName,Act,NewState,LastActionName),TO,Res),
(Res=time_out -> format_error_with_nl('! Timeout occurred while performing step ~w of execute: ~w ms',[Nr,TO]),
% TO DO: try and obtain operation name in which time-out occured
error_occurred(time_out,execute),
assertz(execute_timeout_occurred),
fail
; true).
cli_trans_aux(CurState,ActionName,Act,NewState,_Nr,LastActionName) :-
cli_trans_aux2(CurState,ActionName,Act,NewState,LastActionName).
Calls:
Name: cli_trans_aux2/5 |
Module: prob_cli |
Name: true |
|
Name: fail |
|
Name: assertz/1 |
|
Name: error_occurred/2 |
Module: prob_cli |
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Name: safe_time_out/3 |
Module: tools_meta |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_trans/5 |
Module: prob_cli |
cli_trans_aux2(CurState,ActionName,Act,NewState,LastActionName) :-
catch_enumeration_warning_exceptions(
(throw_enumeration_warnings_in_current_scope,
cli_execute_trans(CurState,ActionName,Act,NewState,LastActionName), % no time-out !
(error_occurred_in_error_scope -> ErrorEvent=true ; ErrorEvent=false)
),
(error_occurred(virtual_time_out_execute),
ActionName = '*** VIRTUAL_TIME_OUT ***', Act=ActionName,
CurState=NewState) % this forces loop detection above; not very elegant way of signalling
),
(ErrorEvent==true,option(strict_raise_error)
-> print('*** ERROR OCCURED DURING EXECUTE ***'),nl, error_occurred(execute),fail
; true).
Calls:
Name: true |
|
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
|
Name: option/1 |
dynamic predicate |
Name: ==/2 |
|
Name: ->/3 |
|
Name: catch_enumeration_warning_exceptions/2 |
Module: foo_error |
Called:
Name: cli_trans_aux/6 |
Module: prob_cli |
cli_vacuity_check :-
eclipse_interface:get_vacuous_invariants(L),
(L=[] -> print('No vacuous invariants'),nl
; maplist(prob_cli:add_vacuous_invariant,L)).
Calls:
Name: maplist/2 |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: get_vacuous_invariants/1 |
Module: eclipse_interface |
cli_visb_history(JSONFile,HTMLFile,Options) :-
(load_visb_file(JSONFile)
-> ifm_option_set(visb_click(SVGID),tcltk_perform_visb_click_event(SVGID)), % simulate clicks if requested
generate_visb_html_for_history(HTMLFile,Options)
; true). % errors already reported
Calls:
Name: true |
|
Name: generate_visb_html_for_history/2 |
Module: foo_error |
Name: ifm_option_set/2 |
Module: prob_cli |
Name: load_visb_file/1 |
Module: foo_error |
Name: ->/3 |
cli_wd_check(ExpectedDis,ExpectedTot) :-
(option(timeout(TO)) -> true ; TO=5000), % this is global_time_out option
(option(silent) -> Opts=[discharge_po,ignore_wd_infos,reorder_conjuncts]
; Opts=[create_not_discharged_msg(warning),discharge_po,ignore_wd_infos,reorder_conjuncts]),
statistics(walltime,[W1,_]),
safe_time_out(analyse_wd_for_machine(NrDischarged,NrTot,_Res,Opts),TO,Res),
statistics(walltime,[W2,_]), WT is W2-W1,
(Res=time_out -> accumulate_infos(wd_check,[timeout-1,walltime-WT]), % discharged and total are unknown
add_error(cli_wd_check,'TIME-OUT in WD Analysis (use -global_time_out X to increase it)')
; format(user_output,'WD Analysis Result: discharged ~w / ~w',[NrDischarged,NrTot]),
(NrTot >0
-> Perc is 100*NrDischarged/NrTot,
(NrDischarged=NrTot -> Col=[green,bold] ; Col=[red])
; Perc = 100, Col=[]),
format_with_colour(user_output,Col,' (~2f %)~n',[Perc]),
WDInfos = [discharged-NrDischarged,timeout-0,total-NrTot,walltime-WT],
accumulate_infos(wd_check,WDInfos),
(ExpectedDis==ExpectedTot, ExpectedTot = NrTot -> true ; true), % for -wd-check-all: bind ExpectedDis
check_required_infos([discharged-ExpectedDis,total-ExpectedTot],WDInfos,cli_wd_check)
).
Calls:
Name: check_required_infos/3 |
Module: prob_cli |
Name: true |
|
Name: =/2 |
|
Name: ==/2 |
|
Name: ->/3 |
|
Name: accumulate_infos/2 |
Module: prob_cli |
Name: format_with_colour/4 |
Module: tools_printing |
Name: is/2 |
|
Name: >/2 |
|
Name: format/3 |
|
Name: add_error/2 |
Module: foo_error |
Name: statistics/2 |
|
Name: safe_time_out/3 |
Module: tools_meta |
Name: option/1 |
dynamic predicate |
cli_wd_inv_proof(UnchangedNr,ProvenNr,TotPOsNr) :-
(option(timeout(TO)) -> true ; TO=5000),
Options=[],
statistics(walltime,[W1,_]),
safe_time_out(analyse_invariants_for_machine(UnchangedNr,ProvenNr,UnProvenNr,TotPOsNr,Options),TO,Res),
statistics(walltime,[W2,_]), WT is W2-W1,
(Res=time_out -> accumulate_infos(wd_inv_proof,[timeout-1,walltime-WT]), % discharged and total are unknown
add_error(cli_wd_check,'TIME-OUT in WD Invariant Proving (use -global_time_out X to increase it)')
;
(TotPOsNr>0 -> Perc is (UnchangedNr+ProvenNr)*100/ TotPOsNr ; Perc = 100.0),
format('Proof summary for ~w Invariant POs (~2f % discharged): ~w unchanged, ~w proven, ~w unproven~n',
[TotPOsNr,Perc,UnchangedNr,ProvenNr,UnProvenNr]),
WDInfos = [proven-ProvenNr,timeout-0,total-TotPOsNr,unchanged-UnchangedNr,unproven-UnProvenNr,walltime-WT],
accumulate_infos(wd_inv_proof,WDInfos)
).
Calls:
Name: accumulate_infos/2 |
Module: prob_cli |
Name: =/2 |
|
Name: format/2 |
|
Name: is/2 |
|
Name: >/2 |
|
Name: ->/3 |
|
Name: add_error/2 |
Module: foo_error |
Name: statistics/2 |
|
Name: safe_time_out/3 |
Module: tools_meta |
Name: true |
|
Name: option/1 |
dynamic predicate |
close_repl_input_stream(file_closed) :- retract(current_repl_input_stream(X,File)),!,
format(":replayed ~w~n",[File]),
close(X).
close_repl_input_stream(no_file).
Calls:
Name: close/1 |
|
Name: format/2 |
|
Name: ! |
|
Name: current_repl_input_stream/2 |
dynamic predicate |
Name: retract/1 |
Called:
Module: prob_cli |
command_option(X) :- option(X), \+ not_command_option(X).
Calls:
Name: not_command_option/1 |
Module: prob_cli |
Name: not/1 |
|
Name: option/1 |
dynamic predicate |
Called:
Name: no_command_issued/0 |
Module: prob_cli |
compare_kodkod_performance1(KPFile,Iterations,NOW) :-
start_animation_without_computing,
compare_kodkod_performance(KPFile,Iterations),
halt_prob(NOW,0).
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: compare_kodkod_performance/2 |
Module: foo_error |
Module: prob_cli |
computeOperations_for_root_required :- initialise_required.
computeOperations_for_root_required :- option(default_trace_check).
computeOperations_for_root_required :- option(trace_check(_,_,_)).
computeOperations_for_root_required :- option(state_trace(_)).
computeOperations_for_root_required :- option(ltl_assertions).
computeOperations_for_root_required :- option(cli_random_animate(_,_)).
computeOperations_for_root_required :- option(socket(_,_)).
computeOperations_for_root_required :- option(cli_mc(_,_)).
computeOperations_for_root_required :- option(ltl_file(_)).
computeOperations_for_root_required :- option(ltl_formula_model_check(_,_)).
computeOperations_for_root_required :- option(ctl_formula_model_check(_,_)).
computeOperations_for_root_required :- option(refinement_check(_,_,_)).
computeOperations_for_root_required :- option(csp_in_situ_refinement_check(_,_)).
computeOperations_for_root_required :- option(csp_checkAssertion(_,_)).
computeOperations_for_root_required :- option(mcm_tests(_,_,_,_)).
computeOperations_for_root_required :- option(mcm_cover(_)).
Calls:
Name: option/1 |
dynamic predicate |
Name: initialise_required/0 |
Module: prob_cli |
Called:
Name: cli_start_animation/1 |
Module: prob_cli |
compute_average(runtime).
compute_average(total_runtime).
compute_average(walltime).
Called:
Name: merge_value/5 |
Module: prob_cli |
constraint_based_check(all) :-
check_loaded_not_empty(constraint_based_check),
print_repl_prompt_s('% Starting Constraint-Based Check for all Operations: '),nl,
start_xml_feature(cbc_operation_check,all_operations,true,FINFO),
(tcltk_constraint_based_check(list(Result),ErrorsWereFound)
-> print('% Constraint-Based Check Result: '),nl,
print(Result),nl,
write_result_to_file(Result),
(ErrorsWereFound=true
-> print_red('*** CONSTRAINT-BASED CHECK FOUND ERRORS ***'),nl, error_occurred(cbc)
; (ErrorsWereFound=false -> print_green('NO ERRORS FOUND'),nl)
; print_red('*** TIMEOUT OCCURRED ***'),nl,error_occurred(cbc)
)
; write_result_to_file(cbc_check_failed), Result=internal_error, ErrorsWereFound=false,
add_internal_error('ConstraintBasedCheck unexpectedly failed. ',cbc_check(all)),definite_error_occurred
),nl,
write_cbc_check_result(Result,ErrorsWereFound),
stop_xml_feature(cbc_operation_check,FINFO).
constraint_based_check(OpName) :- OpName\=all, % -cbc OpName
check_loaded_not_empty(constraint_based_check),
print_repl_prompt_s('% Starting Constraint-Based Check for Operation: '), print(OpName),nl,
start_xml_feature(cbc_operation_check,operation,OpName,FINFO),
(tcltk_constraint_based_check_with_timeout(OpName,Result)
-> print('% Constraint-Based Check Result: '),nl, print(Result),nl,
write_result_to_file(Result),
(Result=time_out
-> print_red('*** TIMEOUT OCCURRED ***'),nl, error_occurred(cbc)
; (Result=ok -> print_green('NO ERRORS FOUND'),nl)
; print_red('*** CONSTRAINT-BASED CHECK FOUND ERRORS ***'),nl,error_occurred(cbc) )
; write_result_to_file(constraint_based_check_failed), Result=internal_error,
add_error(probcli,'ConstraintBasedCheck unexpectedly failed'),
(b_is_operation_name(OpName) -> true
; add_error(probcli,'Unknown Operation Name: ',OpName)),
definite_error_occurred
),nl,
write_cbc_check_result(Result),
stop_xml_feature(cbc_operation_check,FINFO).
Calls:
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: write_cbc_check_result/1 |
Module: prob_cli |
Name: nl |
|
Module: prob_cli | |
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Name: b_is_operation_name/1 |
Module: bmachine |
Name: ->/3 |
|
Name: add_error/2 |
Module: foo_error |
Name: =/2 |
|
Name: write_result_to_file/1 |
Module: prob_cli |
Name: error_occurred/1 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Name: print_green/1 |
Module: tools_printing |
Name: print/1 |
|
Module: tcltk_interface | |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Name: \=/2 |
|
Name: write_cbc_check_result/2 |
Module: prob_cli |
Name: add_internal_error/2 |
Module: foo_error |
Module: tcltk_interface |
Called:
Name: cbc_check/1 |
Module: prob_cli |
construct_and_execute_tlc_command(TLC4BTool) :-
parsercall: get_java_command_path(JavaCmd),
loaded_main_file(File),
% determine extra arguments:
(get_preference(tlc_number_of_workers,TLCWorkers), TLCWorkers>1
-> number_codes(TLCWorkers,CC), atom_codes(TLAWA,CC), WW = ['-workers',TLAWA]
; WW=[]),
(option(no_assertion_violations) -> WA = ['-noass'] ; WA=[]),
(option(no_deadlocks) -> WD = ['-nodead'] ; WD=[]),
(option(no_invariant_violations) -> WI = ['-noinv'] ; WI=[]),
(option(no_goal) -> WG = ['-nogoal'] ; WG=[]),
(option(no_ltl) -> WL = ['-noltl'] ; WL=[]),
(option_verbose -> WV = ['-verbose'] ; WV=[]),
(option(silent) -> WS = ['-silent'] ; WS=[]),
(option(logtlc(Log)) -> WLG = ['-log',Log] ; WLG=[]),
(get_preference(tlc_use_prob_constant_setup,true),
tcltk_get_constants_predicate(DNF_Pred)
-> WCS = ['-constantssetup', DNF_Pred]
; WCS=[]),
append([WW,WA,WD,WI,WG,WL,WCS,WV,WS,WLG,[File]],TLCArgs),
debug_println(19,tlc_args(TLCArgs)),
statistics(walltime,[W1,_]),
% we could call get_jvm_options: '-Xss5m' is useful e.g. for Generated1000.mch
system_call(JavaCmd, ['-Xss5m', '-jar', TLC4BTool | TLCArgs], Text,JExit),
statistics(walltime,[W2,_]),
WTime is W2-W1,
formatsilent('exit : ~w walltime: ~w ms~n',[JExit,WTime]),
(JExit=exit(0)
-> accumulate_infos(mc_with_tlc,[walltime-WTime,model_check_ok-1])
; accumulate_infos(mc_with_tlc,[walltime-WTime,model_check_error-1]),
add_error(construct_and_execute_tlc_command,'Error while model checking with TLC: ',TLC4BTool/File),
atom_codes(T,Text),
add_error_fail(construct_and_execute_tlc_command,'Std error: ',T)
).
Calls:
Name: add_error_fail/3 |
Module: foo_error |
Name: atom_codes/2 |
|
Name: add_error/3 |
Module: foo_error |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: formatsilent/2 |
Module: foo_error |
Name: is/2 |
|
Name: statistics/2 |
|
Name: system_call/4 |
Module: system_call |
Name: debug_println/2 |
Module: foo_error |
Name: append/2 |
Module: foo_error |
Name: tcltk_get_constants_predicate/1 |
Module: foo_error |
Name: get_preference/2 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Name: option_verbose/0 |
Module: prob_cli |
Name: number_codes/2 |
|
Name: >/2 |
|
Name: loaded_main_file/1 |
Module: prob_cli |
Name: get_java_command_path/1 |
Module: parsercall |
Called:
Name: cli_start_mc_with_tlc/0 |
Module: prob_cli |
convert_dash_to_underscore(45,R) :- !, R=95.
convert_dash_to_underscore(X,X).
Calls:
Name: =/2 |
|
Name: ! |
count_assertions([],A,A).
count_assertions([H|T],A,R) :- size_of_conjunction(H,N1),
NN is A + N1,
count_assertions(T,NN,R).
Calls:
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: is/2 |
|
Name: size_of_conjunction/2 |
Module: bsyntaxtree |
Called:
Name: zmq_start_master/2 |
Module: prob_cli |
coverage(ShowEnabledInfo) :- probcli_time_stamp(NOW), cli_show_coverage(ShowEnabledInfo,NOW).
Calls:
Name: cli_show_coverage/2 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Called:
Module: prob_cli |
create_state_error_description(eventerror(Event,Error,_),Description) :- !,
functor(Error,Functor,_),
ajoin(['event_error:',Event,':',Functor],Description).
create_state_error_description(StateError,Description) :-
functor(StateError,Functor,_),
atom_concat('state_error:',Functor,Description).
Calls:
Name: atom_concat/3 |
|
Name: functor/3 |
|
Name: ajoin/2 |
Module: tools_strings |
Name: ! |
Called:
Name: get_state_errors/1 |
Module: prob_cli |
csv_table_command(TCommand,Formulas,Options,CSVFile) :-
append(Formulas,[TableResult],ActualArgs),
OptionalArgs=[],
format_with_colour_nl(user_output,[blue],'Calling table command ~w',[TCommand]),
call_command(table,TCommand,_,ActualArgs,OptionalArgs),
write_table_to_csv_file(CSVFile,Options,TableResult),
format_with_colour_nl(user_output,[blue],'Finished exporting ~w to ~w',[TCommand,CSVFile]).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: write_table_to_csv_file/3 |
Module: foo_error |
Name: call_command/5 |
Module: foo_error |
Name: =/2 |
|
Name: append/3 |
default_json_trace_save :-
loaded_main_file(_,MainFile),
get_default_trace_file(MainFile,'.prob2trace',HistFile),
format('Saving history to JSON ProB2-UI default trace file: ~w~n',[HistFile]),
tcltk_save_history_as_trace_file(json,HistFile).
Calls:
Module: b_trace_checking | |
Name: format/2 |
|
Name: get_default_trace_file/3 |
Module: b_trace_checking |
Name: loaded_main_file/2 |
dynamic predicate |
default_trace_check :- loaded_main_file(_,MainFile),
cli_start_default_trace_check(MainFile).
Calls:
Module: prob_cli | |
Name: loaded_main_file/2 |
dynamic predicate |
definite_error_occurred :- print_error('*** Abnormal termination of probcli !'),
(file_loaded(_,File) -> print_error('*** for_file'(File)) ; true),
(current_probcli_command(Cmd) -> print_error('*** for_command'(Cmd)) ; true),
(probcli_time_stamp(NOW) -> halt_prob(NOW,1)
; writeln_log(halt(1)),
halt_exception(1)
).
Calls:
Name: halt_exception/1 |
Module: prob_cli |
Name: writeln_log/1 |
Module: foo_error |
Name: halt_prob/2 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Name: ->/3 |
|
Name: true |
|
Name: print_error/1 |
Module: tools_printing |
Name: current_probcli_command/1 |
dynamic predicate |
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: cli_init_options2/2 |
Module: prob_cli |
Name: ltl_check_assertions/0 |
Module: prob_cli |
Module: prob_cli | |
Name: model_check_aux/5 |
Module: prob_cli |
Name: ltl_check_file/1 |
Module: prob_cli |
Name: error_occurred/4 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
det_check_constants :- \+ current_state_corresponds_to_setup_constants_b_machine, !,
format_with_colour_nl(user_error,[red],'This command requires to setup the constants first!',[]).
det_check_constants :-
current_state_id(ID),
%format('Checking whether constants are forced in state ~w:~n',[ID]),
cbc_constants_det_check(ID).
Calls:
Module: b_state_model_check | |
Name: current_state_id/1 |
Module: state_space |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: ! |
|
Name: current_state_corresponds_to_setup_constants_b_machine/0 |
Module: state_space |
Name: not/1 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
display_match(KIND,CodesToMatch,Ids) :- display_match(KIND,CodesToMatch,Ids,show_empty).
Calls:
Name: display_match/4 |
Module: prob_cli |
Called:
Name: display_match/3 |
Module: prob_cli |
Name: browse_all_machines/1 |
Module: prob_cli |
display_match(KIND,CodesToMatch,Ids,ShowEmpty) :-
include(prob_cli:atom_contains_codes(CodesToMatch),Ids,MatchingIds),
length(MatchingIds,LenMIds),
(LenMIds=0, ShowEmpty=show_only_if_match -> true
; sort(MatchingIds,SMatchingIds),
(CodesToMatch=[]
-> format(' ~w: ~w ~w~n',[KIND,LenMIds,SMatchingIds])
; length(Ids,LenIds),
format('Matching ~w: ~w/~w ~w~n',[KIND,LenMIds,LenIds,SMatchingIds]))
).
Calls:
Name: format/2 |
|
Name: length/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: sort/2 |
|
Name: true |
|
Name: include/3 |
Module: foo_error |
Called:
Name: display_match/3 |
Module: prob_cli |
Name: browse_all_machines/1 |
Module: prob_cli |
do_det_checking :- option(det_check),!.
do_det_checking :- option(det_constants_check),current_state_id(root),
b_or_z_mode, b_machine_has_constants_or_properties.
Calls:
Module: bmachine | |
Name: b_or_z_mode |
Module: foo_error |
Name: current_state_id/1 |
Module: state_space |
Name: option/1 |
dynamic predicate |
Name: ! |
Called:
Name: perform_random_step/4 |
Module: prob_cli |
do_enabling_analysis_csv(EnablingCsvFile,NOW) :-
start_probcli_timer(Timer1),
start_xml_feature(enabling_analysis,file,EnablingCsvFile,FINFO),
tcltk_cbc_enabling_analysis(list(R)),
stop_probcli_timer(Timer1,'% Finished CBC Enabling Analysis',_TotWallTime),
print_cbc_stats(R,NOW),
debug_println(9,writing_to_file(EnablingCsvFile)),
my_tell(EnablingCsvFile),
print_enable_table(R),
told,!,
stop_xml_feature(enabling_analysis,FINFO).
do_enabling_analysis_csv(EnablingCsvFile,_) :-
add_error(enabling_analysis,'Enabling analysis failed',EnablingCsvFile),
stop_xml_group_in_log(enabling_analysis).
Calls:
Name: stop_xml_group_in_log/1 |
Module: foo_error |
Name: add_error/3 |
Module: foo_error |
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: ! |
|
Name: told |
|
Name: print_enable_table/1 |
Module: foo_error |
Name: my_tell/1 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: print_cbc_stats/2 |
Module: prob_cli |
Name: stop_probcli_timer/3 |
Module: prob_cli |
Name: tcltk_cbc_enabling_analysis/1 |
Module: foo_error |
Name: start_xml_feature/4 |
Module: prob_cli |
Name: start_probcli_timer/1 |
Module: prob_cli |
do_feasibility_analysis(ATimeOut,EnablingCsvFile) :-
arg_is_number(ATimeOut,TimeOut),
start_xml_feature(feasibility_analysis,file,EnablingCsvFile,FINFO),
findall(list([Op,Res]),feasible_operation_with_timeout(Op,TimeOut,Res),R),
debug_println(9,writing_to_file(EnablingCsvFile)),
my_tell(EnablingCsvFile),
print_enable_table([list(['Event','Feasibility'])|R]),
told,!,
stop_xml_feature(feasibility_analysis,FINFO).
do_feasibility_analysis(_,EnablingCsvFile) :-
add_error(feasibility_analysis,'Feasibility analysis failed',EnablingCsvFile),
stop_xml_group_in_log(feasibility_analysis).
Calls:
Name: stop_xml_group_in_log/1 |
Module: foo_error |
Name: add_error/3 |
Module: foo_error |
Name: stop_xml_feature/2 |
Module: prob_cli |
Name: ! |
|
Name: told |
|
Name: print_enable_table/1 |
Module: foo_error |
Name: my_tell/1 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: findall/3 |
|
Name: start_xml_feature/4 |
Module: prob_cli |
Name: arg_is_number/2 |
Module: tools |
do_not_execute_automatically('pl').
do_not_execute_automatically('smt2').
Called:
Name: run_probcli3/2 |
Module: prob_cli |
dot_command(DCommand,DotFile,DotEngine) :- call_dot_command_with_engine(DCommand,DotFile,[],DotEngine).
Calls:
Name: call_dot_command_with_engine/4 |
Module: foo_error |
dot_command_for_expr(DECommand,Expr,DotFile,Opts,DotEngine) :-
call_dot_command_with_engine_for_expr(DECommand,Expr,DotFile,Opts,DotEngine).
Calls:
Name: call_dot_command_with_engine_for_expr/5 |
Module: foo_error |
Dynamic: true
dot_file_number(0).
Called:
Name: get_next_nr/1 |
Module: prob_cli |
Dynamic: true
dot_file_prefix('~/Desktop/dot').
Called:
Name: get_dot_file/2 |
Module: prob_cli |
Module: prob_cli |
edit_main_file :- last_repl_error(File,Line),
\+ functor(File,unknown,_), % File \= unknown(_),
!,
format('Showing first error from last command~n',[]),
edit_file(File,Line).
edit_main_file :- file_loaded(_,MainFile), \+ empty_machine_loaded,
!,edit_file(MainFile,unknown).
edit_main_file :- format_with_colour_nl(user_error,[red],'No file loaded, cannot open EDITOR!',[]).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: edit_file/2 |
Module: tools_commands |
Name: ! |
|
Name: empty_machine_loaded/0 |
Module: prob_cli |
Name: not/1 |
|
Name: file_loaded/2 |
dynamic predicate |
Name: format/2 |
|
Name: functor/3 |
|
Name: last_repl_error/2 |
dynamic predicate |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
Name: show_origin/1 |
Module: prob_cli |
empty_machine_loaded :- file_loaded(true,'$$empty_machine').
Calls:
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: initialise_required/0 |
Module: prob_cli |
Name: edit_main_file/0 |
Module: prob_cli |
error_occurred(warning(Type)) :- !, error_occurred(Type,warning).
error_occurred(Type) :- error_occurred(Type,error).
Calls:
Name: error_occurred/2 |
Module: prob_cli |
Name: ! |
Called:
error_occurred(Type,ErrOrWarn) :- error_occurred(Type,ErrOrWarn,not_yet_extracted,'').
Calls:
Name: error_occurred/4 |
Module: prob_cli |
Called:
error_occurred(Type,ErrOrWarning,ExtractedSpan,Msg) :-
option(expect_error_pos(Type,Line,Col)),!,
write_xml_element_to_log(expected_error_occurred,[category/Type, (type)/ErrOrWarning, message/Msg]),
assertz(expected_error_occurred(Type)),
(get_error_or_warning_span(ExtractedSpan,Type,EL,EC)
-> (option(expect_error_pos(Type,EL,EC))
-> debug_println(9,expect_error_pos_ok(Type,EL,EC))
; format('*** Unexpected line ~w and column ~w for error ~w!~n*** Expected line ~w and column ~w.~n',[EL,EC,Type,Line,Col]),
definite_error_occurred
)
; format('*** Could not obtain position information for error ~w! Expected line ~w and column ~w.~n',[Type,Line,Col]),
%display_error_statistics,
definite_error_occurred).
error_occurred(Type,ErrOrWarning,ExtractedSpan,Msg) :-
option(expect_error(Type)),!,
inc_counter(cli_expected_errors),
get_xml_span(ExtractedSpan,XML),
write_xml_element_to_log(expected_error_occurred,[category/Type, (type)/ErrOrWarning, message/Msg|XML]),
assertz(expected_error_occurred(Type)).
error_occurred(Type,ErrOrWarning,ExtractedSpan,Msg) :-
(probcli_time_stamp(NOW) -> true ; NOW=unknown),
writeln_log(error_occurred(NOW,Type)),
get_xml_span(ExtractedSpan,XML),
(option(optional_error(Type)) ->
write_xml_element_to_log(optional_error_occurred,[category/Type, (type)/ErrOrWarning, message/Msg|XML]),
formatsilent('% Optional error occured: ~w~n',[Type])
;
write_xml_element_to_log(error_occurred,[category/Type, (type)/ErrOrWarning, message/Msg|XML]),
(ErrOrWarning = warning -> safe_inc_counter(cli_warnings) ; safe_inc_counter(cli_errors)),
flush_output, % ensure we can later associate position of error message
(option(strict_raise_error) ->
print_error('*** Unexpected error occurred ***'),
print_error(Type),
findall(Err,option(expect_error(Err)),Ls), (Ls=[] -> true ; print_error(expected(Ls))),
definite_error_occurred
; ErrOrWarning=error,serious_error(Type)
-> print_error('*** Serious error occurred ***'),
print_error(Type),
definite_error_occurred
; print_probcli_error_non_strict(Type,ErrOrWarning)
)
).
Calls:
Module: prob_cli | |
Module: prob_cli | |
Name: print_error/1 |
Module: tools_printing |
Name: serious_error/1 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: true |
|
Name: findall/3 |
|
Name: option/1 |
dynamic predicate |
Name: flush_output |
|
Name: safe_inc_counter/1 |
Module: prob_cli |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: formatsilent/2 |
Module: foo_error |
Name: get_xml_span/2 |
Module: prob_cli |
Name: writeln_log/1 |
Module: foo_error |
Name: probcli_time_stamp/1 |
dynamic predicate |
Name: assertz/1 |
|
Name: inc_counter/1 |
Module: counter/counter |
Name: ! |
|
Name: format/2 |
|
Name: debug_println/2 |
Module: foo_error |
Module: prob_cli |
Called:
error_occurred_with_msg(Type,Msg) :- error_occurred_with_msg(Type,Msg,not_yet_extracted).
Calls:
Module: prob_cli |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
Name: check_for_errors/2 |
Module: prob_cli |
Name: process_exception/2 |
Module: prob_cli |
error_occurred_with_msg(warning(Type),Msg,Span) :- !, error_occurred(Type,warning,Span,Msg).
error_occurred_with_msg(Type,Msg,Span) :- error_occurred(Type,error,Span,Msg).
Calls:
Name: error_occurred/4 |
Module: prob_cli |
Name: ! |
Called:
Name: cli_execute_aux/7 |
Module: prob_cli |
Name: check_for_errors/2 |
Module: prob_cli |
Name: process_exception/2 |
Module: prob_cli |
eval0 :- store_last_error_location_for_repl,
reset_errors, % get_errors prints errors again and quits in -strict mode
% However, reset_errors means that in subsequent REPL runs errors are not printed again!!
garbage_collect, eval1.
Calls:
Name: eval1/0 |
Module: prob_cli |
Name: garbage_collect |
|
Name: reset_errors |
Module: foo_error |
Module: prob_cli |
Called:
Name: eval_line/1 |
Module: prob_cli |
eval1 :- repl_multi_read_line(Expr), eval_probcli_repl_line(Expr).
Calls:
Name: eval_probcli_repl_line/1 |
Module: prob_cli |
Name: repl_multi_read_line/1 |
Module: prob_cli |
eval_check_result(StringResult,Expected,_,Origin,File) :- Expected\=StringResult,!,
format_error_with_nl('! Evaluation error, expected result to be: ~w (but was ~w) in ~w',[Expected,StringResult,File]),
error_occurred(Origin).
eval_check_result('NOT-WELL-DEFINED',Expected,_,Origin,File) :- var(Expected),!,
format_error_with_nl('! Evaluation NOT-WELL-DEFINED in ~w',[File]),
error_occurred(Origin).
eval_check_result(_,_,EnumWarning,_,_) :- eval_gen_enum_warning(EnumWarning).
Calls:
Name: eval_gen_enum_warning/1 |
Module: prob_cli |
Name: error_occurred/1 |
Module: prob_cli |
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: ! |
|
Name: var/1 |
|
Name: \=/2 |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
eval_command("q",quit).
eval_command("quit",quit).
eval_command("halt",quit).
eval_command("x",exit).
eval_command("exit",exit).
eval_command("f",find).
eval_command("find",find).
eval_command("*",apropos).
eval_command("apropos",apropos).
eval_command("help",help).
eval_command("h",help).
eval_command("?",help).
eval_command("ctl",ctl). % :ctl
eval_command("ctlh",ctl_starthere). % :ctlh
eval_command("ltl",ltl). % :ltl
eval_command("ltlh",ltl_starthere). % :ltlh
eval_command("reset",reset_animator(hard)). % :reset
eval_command("reset-history",reset_animator(history_only)). % :reset
eval_command("statistics",statistics).
eval_command("stats",statistics). % :stats
eval_command("states",state_space_stats). % :states
eval_command("state",show_state_info(2000)). % :state
eval_command("statespace",state_space_display). % :statespace
eval_command("u",unsat_core).
eval_command("show",show_last_as_table). % :show
eval_command("dot",show_last_as_dot(no_dot_viewing)). % :dot
eval_command("dotty",show_last_as_dot(dotty)).
eval_command("dotpdf",show_last_as_dot(dot)).
eval_command("sfdp",show_last_as_dot(sfdp)).
eval_command("browse",browse). % :browse
eval_command("abstract_constants",check_abstract_constants). % :abstract_constants
eval_command("det_check_constants",det_check_constants). % :det_check_constants
eval_command("b",browse).
eval_command("hbrowse",hbrowse). % :hbrowse
eval_command("comp",show_components). % :comp
eval_command("replay",replay_repl_file). % :replay
eval_command("trim",trimcore). % :trim
eval_command("src",show_source). %:src
eval_command("source",show_source). %:source
eval_command("origin",show_origin). %:origin
eval_command("edit",edit_main_file).
eval_command("e",edit_main_file). % :e
eval_command("comment",comment).
eval_command("machine",show_machine_info(statistics)). %:machine
eval_command("machine-stats",show_machine_info(statistics)). %:machine
eval_command("files",show_machine_info(files)). %:files
eval_command("syntax",syntax_help). % :syntax
eval_command("open",open_file). % :open
Called:
Module: prob_cli | |
Name: parse_eval_command/3 |
Module: prob_cli |
eval_command_help(exit,[],'Exit ProB').
eval_command_help(find,['P'],'Find state in state-space which makes LTL atomic proposition P true; LTL Propositions: {B-Pred}, e(Op), [Op], true, false, sink').
eval_command_help(ltl,['F'],'Check LTL formula F; LTL Operators: G,F,X,U,W,R,not,&,or,=>; LTL Propositions: {B-Pred}, e(Op), [Op], true, false, sink; Past-LTL Operators: Y,H,O,S,T (dual to X,G,F,U,R)').
eval_command_help(ltl_starthere,['F'],'Check LTL formula F starting from current state').
eval_command_help(ctl,['F'],'Check CTL formula F in all initial states; CTL Syntax: ExUy,EXx,AXx,EFx,AGx,EX[Op]x,e(Op),{B-Pred}').
eval_command_help(ctl_starthere,['F'],'Check CTL formula F starting from current state').
eval_command_help(browse,opt('PAT'),'Browse available constants, variables, sets and lets introduced in REPL').
eval_command_help(apropos,['PAT'],'Find constant or variable whose names contains PAT').
eval_command_help(hbrowse,['PAT'],'Browse machine hierarchy for all identifiers whose names contains PAT').
eval_command_help(show_components,[],'Show components of PROPERTIES').
eval_command_help(abstract_constants,[],'Show ABSTRACT_CONSTANTS and check if can be fully evaluated').
eval_command_help(det_check_constants,[],'Check if values of CONSTANTS are forced and explain if they are').
eval_command_help(show_last_as_table,[],'Show last evaluated expression in tabular form').
eval_command_help(show_last_as_dot(_),['F'],'Show expression or predicate F as dot graph').
eval_command_help(unsat_core,[],'Compute Unsatisfiable Core of last evaluated predicate').
eval_command_help(help,opt('CMD'),'Provide help about REPL command CMD').
eval_command_help(replay_repl_file,['FILE'],'Replay FILE of REPL commands').
eval_command_help(reset_animator(_),[],'Reset history and statespace of animator').
eval_command_help(show_source,['ID'],'Show origin and source code definition of identifier ID').
eval_command_help(show_origin,['ID'],'Show origin of identifier ID and try opening in EDITOR').
eval_command_help(show_machine_info(_),[],'Show statistics about loaded machine and files').
eval_command_help(state_space_stats,[],'Show statistics about state space').
eval_command_help(state_space_display,[],'Show complete state space transitions (could be very big !)').
eval_command_help(show_state_info(_),[],'Show current state').
eval_command_help(statistics,[],'Show statistics about last evaluation').
eval_command_help(trim,[],'Trim memory usage of probcli (try and give memory back to the OS)').
eval_command_help(type,['E'],'Show type of expression E').
eval_command_help(cvc4,['P'],'Solve predicate P using CVC4 solver').
eval_command_help(kodkod,['P'],'Solve predicate P using SAT solver via Kodkod').
eval_command_help(z3,['P'],'Solve predicate P using Z3 solver').
eval_command_help('z3-free',['P'],'Solve predicate P using Z3 solver (ignoring current state)').
eval_command_help('z3-file',['F'],'Solve predicate in File F using Z3 solver').
eval_command_help('z3-free-file',['F'],'Solve predicate in File F using Z3 solver (ignoring current state)').
eval_command_help(cdclt,['P'],'Solve predicate P using Prolog CDCL(T) solver').
eval_command_help(cdclt-free,['P'],'Solve predicate P using Prolog CDCL(T) solver (ignoring current state)').
eval_command_help(prob,['P'],'Solve predicate P using ProB solver (ignoring current state)').
eval_command_help('prob-file',['F'],'Solve predicate in File F using ProB solver (ignoring current state)').
eval_command_help(edit_main_file,opt('ID'),'Edit main file (or origin of identifier ID) using EDITOR (path_to_text_editor preference)').
eval_command_help(comment,['STRING'],'provide STRING as a comment (mainly useful for :replay files)').
eval_command_help(syntax_help,[],'Show a summary of the B syntax accepted by the REPL').
eval_command_help(open_file,['FILE'],'Open FILE in preferred application.').
Called:
Name: parse_eval_command/3 |
Module: prob_cli |
Module: prob_cli |
eval_gen_enum_warning(false) :- !.
eval_gen_enum_warning(time_out) :- !,error_occurred(eval_string_time_out).
eval_gen_enum_warning(_) :- print_error('Enumeration warning occurred'),
error_occurred(eval_string_enum_warning,warning).
Calls:
Name: error_occurred/2 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: error_occurred/1 |
Module: prob_cli |
Name: ! |
Called:
Name: eval_check_result/5 |
Module: prob_cli |
eval_help :-
print('ProB Interactive Expression and Predicate Evaluator '), nl,
print('Type a valid B expressions or predicates, followed by RETURN or ENTER.'),nl,
print('You can spread input over multiple lines by ending lines with "\\".'),nl,
browse_machine([]),
print('You can also type one of the following commands: '),nl,
(option_verbose ->
print(' + to save last expression to ProB unit tests.'),nl,
print(' ! to go to deterministic propagation only mode.'),nl,
print(' $ to print evaluation time for last expression.'),nl,
print(' $$ to pretty-print last expression and its type.'),nl,
print(' $$$ to pretty-print last expression in nested fashion.'),nl,
print(' !p to toggle performance messages.'),nl,
print(' !norm to toggle normalisation of results.'),nl,
print(' :col to toggle colorizing of results.'),nl
; true),
print(' :let x = E to define a new local variable x'),nl, % : optional for let
print(' :unlet x to un-define a local variable'),nl,
print(' #file=MYFILE to evaluate the formula in MYFILE'),nl,
print(' @INVARIANT to evaluate or obtain invariant predicate'),nl,
print(' @PROPERTIES, @GUARD-OpName ditto for properties and guards'),nl, % @FUZZ, @RANDOMISE also exist
print(' :b or :b Prefix to browse the available identifiers'),nl,
print(' :t E to get the type of an expression'),nl,
print(' :r to reload the machine'),nl,
print(' :show to display the last result as a table (if possible)'),nl,
print(' :list CAT to display information with CAT : {files,variables,help,...}'),nl,
print(' :* P to display constants/variables containing pattern P'),nl,
print(' :core Pred to compute the unsat core for Pred'),nl,
print(' :u to compute the unsat core for last evaluated result'),nl,
print(' :stats to print the type and evaluation time for last query'),nl,
print(' -PROBCLIARGS to pass command-line probcli arguments to the REPL'),nl,
print(' (e.g., -v to switch to verbose mode or -p PREF VAL to set a preference)'),nl,
print(' :ctl F or :ltl F to check a CTL or LTL formula.'),nl,
print(' :f F to find a state satisfying LTL atomic property.'),nl,
print(' :find-value PAT to find a value in current state matching PAT.'),nl,
print(' :exec S to execute an operation or substitution S.'),nl,
print(' :replay FILE to replay a file of commands.'),nl,
print(' :z3 P, :cvc4 P, :kodkod P to solve predicate P using alternate solver'),nl,
print(' :forall P to prove predicate P as universally quantified with default solver'),nl,
print(' :prove P to prove predicate P using ProB\'s own WD prover'),nl,
(option_verbose ->
print(' :krt P, :pp P, :ml P to prove predicate P using Atelier-B provers if installed'),nl
; true),
print(' :print P to pretty print predicate in a nested fashion'),nl,
print(' :min P, :max P to find a minimal/maximal model for predicate P or %x.(P|E)'),nl,
print(' :prefs to print current value of preferences'),nl,
print(' :reset to reset the state space of the animator.'),nl, % :reset-history only resets history
print(' :help CMD to obtain more help about a command.'),nl,
print(' :state, :statespace, :states,'),nl,
print(' :machine, :files, :source, :orgin, :machine-stats,'),nl,
print(' :apropos, :hbrowse, :abstract_constants, :det_check_constants,'),nl,
print(' :dot, :dotty, :sfdp, :trim, :comp - use :help CMD for more info'),nl,
print(' :syntax to show a summary of the B syntax accepted by the REPL'),nl,
print(' :q to exit.'),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: true |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: ->/3 |
|
Name: browse_machine/1 |
Module: prob_cli |
Called:
Name: help/0 |
Module: prob_cli |
Name: exec_eval_command/2 |
Module: prob_cli |
eval_line([]) :- !, print_repl_prompt('Type :q or :quit to quit.'),nl,eval0.
eval_line(end_of_file) :- !, halt_exception(0).
eval_line(":r") :- !, eval_line("--reload").
eval_line(":reload") :- !, eval_line("--reload").
eval_line("--reload") :- !,
(reload_mainfile -> true ; get_errors,print_repl_prompt('Error(s) occured during reload (use :e to jump to first error)'),nl),
eval0.
eval_line(":prefs") :- !,print_eclipse_prefs, eval0.
eval_line([45|Command]) :- % -command
generate_atom_list([45|Command],[],ArgV),
%print(argv(ArgV)),nl,
% try and parse like commands passed to probcli
get_options(ArgV,recognised_cli_option,Options,[],fail),
print_repl_prompt('Executing probcli command: '),print_repl_prompt(Options),nl,!,
(maplist(prob_cli:call_probcli_option,Options) -> true
; print_red('Failed to execute probcli arguments'),nl),
eval0.
eval_line("+") :- !, add_last_expression_to_unit_tests, eval0.
eval_line("$+") :- !, preferences:temporary_set_preference(expand_avl_upto,-1,CHNG),
print_last_value,preferences:reset_temporary_preference(expand_avl_upto,CHNG),
eval0.
eval_line("$$$") :- !, % $$0 - $$9 commands to print last expression with indentation
indent_print_last_expression, eval0.
eval_line("!trace") :- !, eval_line("^").
eval_line("^") :- !,
(retract(trace_eval) -> print_repl_prompt('TRACING OFF'),nl
; assertz(trace_eval), print_repl_prompt('TRACING ON'),nl), eval0.
eval_line("!observe") :- !, toggle_observe_evaluation.
eval_line("!v") :- !, tcltk_turn_debugging_off.
eval_line("!p") :- !, toggle_perfmessages.
eval_line("!perf") :- !, toggle_perfmessages.
eval_line("!profile") :- !, eval_line("%").
eval_line("!print_profile") :- !, eval_line("%%").
eval_line("%") :- !, print_repl_prompt('PROFILING : '), %spy([avl:avl_size/2]),
(current_prolog_flag(profiling,on)
-> set_prolog_flag(profiling,off), print('OFF') ;
set_prolog_flag(profiling,on), print('ON')),
nl,print_repl_prompt('USE %% to print profile info'),nl,eval0.
eval_line("%%") :- !, nl,print_repl_prompt('PROLOG PROFILE INFORMATION:'), nl,
catch(print_profile,
error(existence_error(_,_),_),
print_red('CAN ONLY BE USED WHEN RUNNING PROB FROM SOURCE')),
nl,
debug:timer_statistics,
eval0.
eval_line("!print_coverage") :- !, nl,print_repl_prompt('PROLOG COVERAGE INFORMATION:'), nl,
(current_prolog_flag(source_info,on) -> true ; print_red('Only useful when current_prolog_flag(source_info,on)!'),nl),
catch(print_coverage,
error(existence_error(_,_),_),
print_red('CAN ONLY BE USED WHEN RUNNING PROB FROM SOURCE')),
nl,
eval0.
eval_line("!profile_reset") :- !, nl,print_repl_prompt('RESETTING PROLOG PROFILE INFORMATION'), nl,
catch(profile_reset,
error(existence_error(_,_),_),
print_red('CAN ONLY BE USED WHEN RUNNING PROB FROM SOURCE')),
eval0.
eval_line("%%%") :- !, nl,print('PROFILE INFORMATION (Starting TK Viewer):'), nl,
catch(
(use_module(library(gauge)), gauge:view),
error(existence_error(_,_),_),
print_red('CAN ONLY BE USED WHEN RUNNING PROB FROM SOURCE')),
nl,
eval0.
eval_line("!debug") :- !,
print_repl_prompt('ENTERING PROLOG DEBUG MODE:'),
catch(
debug,
error(existence_error(_,_),_),
print_red('CAN ONLY BE USED WHEN RUNNING PROB FROM SOURCE')),
nl,
eval0.
eval_line("@") :- !, get_preference(find_abort_values,OldVal),
print_repl_prompt('Try more aggressively to detect ill-defined expressions: '),
(OldVal=true -> Val=false ; Val=true), print(Val),nl,
temporary_set_preference(find_abort_values,Val) , eval0.
eval_line("!") :- !, toggle_eval_det,eval0.
eval_line("!norm") :- !, toggle_normalising,eval0.
eval_line(Codes) :- parse_eval_command(Codes,CommandName,Argument),!,
debug_println(9,executing_eval_command(CommandName,Argument)),
(exec_eval_command(CommandName,Argument) -> eval0
; format_with_colour_nl(user_error,[red,bold],'Command ~w failed',[CommandName]),
eval0).
eval_line(ExpressionOrPredicate) :- (trace_eval -> trace ; true),
(eval_codes(ExpressionOrPredicate,exists,_,_,_,_)
-> eval0
; print_red('Evaluation failed'),nl,eval0).
Calls:
Name: eval0/0 |
Module: prob_cli |
Name: nl |
|
Name: print_red/1 |
Module: tools_printing |
Name: eval_codes/6 |
Module: foo_error |
Name: ->/3 |
|
Name: true |
|
Name: trace |
|
Name: trace_eval |
dynamic predicate |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: exec_eval_command/2 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: ! |
|
Name: parse_eval_command/3 |
Module: prob_cli |
Name: toggle_normalising |
Module: foo_error |
Name: toggle_eval_det |
Module: foo_error |
Name: temporary_set_preference/2 |
Module: foo_error |
Name: print/1 |
|
Name: =/2 |
|
Name: print_repl_prompt/1 |
Module: prob_cli |
Name: get_preference/2 |
Module: foo_error |
Name: catch/3 |
|
Name: current_prolog_flag/2 |
|
Name: timer_statistics/0 |
Module: debug |
Name: set_prolog_flag/2 |
|
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: toggle_perfmessages/0 |
Module: performance_messages |
Name: tcltk_turn_debugging_off |
Module: foo_error |
Name: toggle_observe_evaluation |
Module: foo_error |
Name: assertz/1 |
|
Name: retract/1 |
|
Name: indent_print_last_expression |
Module: foo_error |
Module: preferences | |
Name: print_last_value |
Module: foo_error |
Module: preferences | |
Name: add_last_expression_to_unit_tests |
Module: foo_error |
Name: maplist/2 |
Module: foo_error |
Name: get_options/5 |
Module: tools |
Name: generate_atom_list/3 |
Module: prob_cli |
Name: print_eclipse_prefs |
Module: foo_error |
Name: get_errors/0 |
Module: prob_cli |
Name: reload_mainfile/0 |
Module: prob_cli |
Name: halt_exception/1 |
Module: prob_cli |
Called:
Name: eval_probcli_repl_line/1 |
Module: prob_cli |
eval_probcli_repl_line(end_of_file) :- !, eval_line(end_of_file).
eval_probcli_repl_line(Line) :- strip_ws(Line,SLine),
catch(eval_line(SLine), E, (
E=halt(_) -> throw(E) % e.g., coming from :quit; will be caught above
; E='$aborted' -> throw(E) % thrown by SWI-Prolog on abort by user
; add_error(repl,'Uncaught Exception in REPL: ',E),
nl % ensure that next prompt is printed
)).
Calls:
Name: catch/3 |
|
Name: strip_ws/2 |
Module: prob_cli |
Name: eval_line/1 |
Module: prob_cli |
Name: ! |
eval_string_or_file(string,String,_,Expected,Recheck) :-
set_current_probcli_command(eval_string(String)),
(option(silent),nonvar(Expected) -> true
; nonvar(Expected) -> format('eval(~w): ~w~n',[Expected,String])
; format('eval: ~w~n',[String])
),
reset_error_spans, % avoid underlining previous errors in eval_string
(eval_string_with_time_out(String,StringResult,EnumWarning,_LS) -> true
; print_error('Eval string failed: '), print_error(String),
error_occurred(eval_string)
),
add_eval_result(StringResult),
eval_check_result(StringResult,Expected,EnumWarning,eval_string,String),
(Recheck=recheck(Mode) -> recheck_pp_of_last_expression(Mode,_,_) ; true),
unset_current_probcli_command.
eval_string_or_file(file(bench),File,Quantifier,Expected,Recheck) :- !,
( member(Solver,[prob,kodkod,sat,'sat-z3','z3', 'cdclt']),
(eval_string_or_file(file(Solver),File,Quantifier,Expected,Recheck) -> fail)
; true).
eval_string_or_file(file(Solver),File,Quantifier,Expected,_) :-
% evaluate a single formula stored in a file
set_current_probcli_command(eval_file(Solver,File)),
turn_show_error_source_off, % reduce clutter in user feedback; eval_file used in ProB Logic Calculator for example
formatsilent('~nEvaluating file: ~w~n',[File]),
error_manager:reset_error_scopes, % TO DO: avoid that exceptions mess up error scopes in eval_string/file
statistics(runtime,[Start,_]),
statistics(walltime,[W1,_]),
(Expected=='TRUE' -> TypeInfo=predicate(_) % avoids parsing as expression
; true),
(eval_file(Solver,File,Quantifier,Result,EnumWarning,TypeInfo)
-> statistics(walltime,[W2,_]), WT is W2-W1,
translate_solver_result(Result,Infos),
accumulate_file_infos(File,Solver,[walltime-WT|Infos]),
add_eval_result(Result),
eval_check_result(Result,Expected,EnumWarning,eval_file,File)
; statistics(walltime,[W2,_]), WT is W2-W1,
accumulate_file_infos(File,Solver,[failure-1,false-0,true-0,unknown-1,walltime-WT]),
add_eval_result(eval_file_failed),
print_error('Eval from file failed: '), print_error(File),
error_occurred(eval_file)
),
statistics(runtime,[Stop,_]), Time is Stop - Start,
debug_format(19,'Time for ~w : ~w ms (~w ms walltime)~n',[File,Time,WT]),
turn_show_error_source_on,
unset_current_probcli_command.
Calls:
Module: prob_cli | |
Name: turn_show_error_source_on |
Module: foo_error |
Name: debug_format/3 |
Module: foo_error |
Name: is/2 |
|
Name: statistics/2 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: add_eval_result/1 |
Module: prob_cli |
Name: accumulate_file_infos/3 |
Module: prob_cli |
Name: eval_check_result/5 |
Module: prob_cli |
Module: prob_cli | |
Name: eval_file/6 |
Module: foo_error |
Name: ->/3 |
|
Name: true |
|
Name: =/2 |
|
Name: ==/2 |
|
Name: reset_error_scopes/0 |
Module: error_manager |
Name: formatsilent/2 |
Module: foo_error |
Name: turn_show_error_source_off |
Module: foo_error |
Module: prob_cli | |
Name: fail |
|
Name: RECURSIVE_CALL/5 |
Module: prob_cli |
Name: ->/2 |
|
Name: member/2 |
|
Name: ! |
|
Name: recheck_pp_of_last_expression/3 |
Module: foo_error |
Name: eval_string_with_time_out/4 |
Module: foo_error |
Name: reset_error_spans |
Module: foo_error |
Name: format/2 |
|
Name: nonvar/1 |
|
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli |
evaluate_from_commandline :-
retractall(eval_result(_,_)),
option(eval_string_or_file(A,B,Q,E,Rchk)), %print(eval(A,B,Q,E)),nl,
% treat eval_string and eval_file together to ensure proper order of evaluation
% (only possible side-effect at the moment: formula can add new machine_string facts)
eval_string_or_file(A,B,Q,E,Rchk),
fail.
evaluate_from_commandline :- print_eval_results,
% treat -repl option or -replay File option
(option(eval_repl([File1|TF]))
-> (repl_evaluate_expressions([File1|TF]) -> true ; true)
; start_repl_if_required).
Calls:
Name: start_repl_if_required/0 |
Module: prob_cli |
Name: true |
|
Module: prob_cli | |
Name: ->/3 |
|
Name: option/1 |
dynamic predicate |
Name: print_eval_results/0 |
Module: prob_cli |
Name: fail |
|
Name: eval_string_or_file/5 |
Module: prob_cli |
Name: retractall/1 |
Called:
Module: prob_cli |
exec_eval_command(quit,_) :- !, halt_exception(0).
exec_eval_command(exit,_) :- !,halt.
exec_eval_command(browse,CodesToMatch) :- !,
(CodesToMatch=[] -> browse % maybe merge with apropos functionality
; exec_eval_command(apropos,CodesToMatch)).
exec_eval_command(find,FORMULA) :-
atom_codes(APF,FORMULA),cli_find_ltl_ap(APF).
exec_eval_command(apropos,CodesToMatch) :- /* :* Pattern (apropos command) */
browse_machine(CodesToMatch).
exec_eval_command(hbrowse,CodesToMatch) :- /* :* Pattern (hbrowse command) */
browse_all_machines(CodesToMatch).
exec_eval_command(show_components,_) :-
print_property_partitions.
exec_eval_command(check_abstract_constants,_) :-
check_abstract_constants.
exec_eval_command(det_check_constants,_) :-
det_check_constants.
exec_eval_command(help,Arg) :-
(Arg=[] -> eval_help
; print_eval_command_help(Arg) -> true
; (Arg=[58|RA],print_eval_command_help(RA)) -> true % remove : at front
; format('Cannot provide help about ~s~n',[Arg]),
available_commands(LC), format('Available commands: ~w~n',[LC])
).
exec_eval_command(ctl,FORMULA) :- % :ctl
atom_codes(F,FORMULA),
(cli_ctl_model_check(F,init,_,Status)
-> (Status=false -> write_history_to_user_output([show_init,show_states]) ; true)
; print('CTL Syntax: ExUy,EXx,AXx,EFx,AGx,EX[Op]x,e(Op),{B-Pred}'),nl).
exec_eval_command(ctl_starthere,FORMULA) :- % :ctlh for ctl here
atom_codes(F,FORMULA),
(cli_ctl_model_check(F,starthere,_,Status)
-> (Status=false -> write_history_to_user_output([show_init,show_states]) ; true)
; print('CTL Syntax: ExUy,EXx,AXx,EFx,AGx,EX[Op]x,e(Op),{B-Pred}'),nl).
exec_eval_command(ltl,FORMULA) :- % :ltl
atom_codes(F,FORMULA),
(cli_ltl_model_check(F,init,_,Status)
-> (Status=no -> write_history_to_user_output([show_init,show_states]) ; true)
; print('LTL Operators: G,F,X,U,W,R,not,&,or,=>,<=>'),nl,
print('LTL Propositions: {B-Pred}, e(Op), [Op], true, false, sink'),nl,
print('Past-LTL Operators: Y,H,O,S,T (dual to X,G,F,U,R)'),nl
).
exec_eval_command(ltl_starthere,FORMULA) :- % :ltl
atom_codes(F,FORMULA),
(cli_ltl_model_check(F,starthere,_,Status)
-> (Status=no -> write_history_to_user_output([show_init,show_states]) ; true)
; print('LTL Operators: G,F,X,U,W,R,not,&,or,=>,<=>'),nl,
print('LTL Propositions: {B-Pred}, e(Op), [Op], true, false, sink'),nl,
print('Past-LTL Operators: Y,H,O,S,T (dual to X,G,F,U,R)'),nl
).
exec_eval_command(reset_animator(Hard),_) :- !,
get_state_space_stats(TotalNodeSum,TotalTransSum,_,_),
(Hard=hard ->
format('Resetting statespace (~w states, ~w transitions)~n',[TotalNodeSum,TotalTransSum]),
reset_animator
; format('Resetting animation history (keeping statespace: ~w states, ~w transitions)~n',[TotalNodeSum,TotalTransSum]),
tcltk_reset % only resets animation history,...
exec_eval_command(statistics,_) :- !, print_last_info.
exec_eval_command(state_space_stats,_) :- !, % :states
get_state_space_stats(TotalNodeSum,TotalTransSum,Processed,Ignored),
(Ignored>0
-> format('Statespace: ~w states (~w processed, ~w ignored) and ~w transitions.~n',
[TotalNodeSum,Processed,Ignored,TotalTransSum])
; format('Statespace: ~w states (~w processed) and ~w transitions.~n',[TotalNodeSum,Processed,TotalTransSum])).
exec_eval_command(state_space_display,_) :- !, % :statespace
( visited_expression(ID,State),
functor(State,F,N),
format('State ID ~w (~w/~w)~n',[ID,F,N]),
transition(ID,OperationTerm,_OpID,ToID),
functor(OperationTerm,F2,N2),
format(' -> ~w (~w/~w)~n',[ToID,F2,N2]),
fail
;
current_state_id(ID),
format('Current State ID ~w~n',[ID])
).
exec_eval_command(show_state_info(Limit),_) :- !, % :state
current_expression(ID,CurState),
expand_const_and_vars_to_full_store(CurState,EState),
format('Current state id ~w : ~n',[ID]), % MAX_DISPLAY_SET
translate:print_bstate_limited(EState,Limit,-1),nl.
exec_eval_command(unsat_core,_) :- !, % :core :u
unsat_core_last_expression.
exec_eval_command(trimcore,_) :- !, % :trim
prob_trimcore_verbose.
exec_eval_command(show_last_as_table,_) :- !, % :show
show_last_expression_as_table.
exec_eval_command(syntax_help,_) :- !, % :syntax
syntax_help.
exec_eval_command(show_last_as_dot(Show),Arg) :- !,
(Arg = [] -> print('*** :dot requires an expression or predicate as argument.'),nl
; safe_absolute_file_name('~/probcli_repl.dot',AFile),
set_eval_dot_file(AFile),
format('Displaying evaluation result in: ~w~n',[AFile]),
(eval_codes(Arg,exists,_,_,_,_) -> true ; true), unset_eval_dot_file,
( Show=no_dot_viewing -> true
; Show=dotty -> show_dot_file(AFile)
; safe_absolute_file_name('~/probcli_repl.pdf',PDFFile),
gen_dot_output(AFile,Show,pdf,PDFFile),
show_pdf_file(PDFFile)
)).
exec_eval_command(replay_repl_file,FILEC) :- !, % :replay
atom_codes(File,FILEC),
set_repl_input_file(not_verbose,File).
exec_eval_command(show_source,IDC) :- !, % :src
atom_codes(ID,IDC),
show_source(ID).
exec_eval_command(show_origin,IDC) :- !, % :origin
atom_codes(ID,IDC),
show_origin(ID).
exec_eval_command(show_machine_info(X),_) :- !, % :machine
cli_print_machine_info(X).
exec_eval_command(edit_main_file,Arg) :- !, % :e
(Arg=[] -> edit_main_file
; trim_quotes(Arg,FC), atom_codes(File,FC), file_exists(File) -> edit_file(File,unknown)
; exec_eval_command(show_origin,Arg)).
exec_eval_command(open_file,FILEC) :- !, % :open
(FILEC=[] -> open_file('.')
; atom_codes(File,FILEC),
open_file(File)
).
exec_eval_command(comment,_Arg) :- !. % do nothing; argument was a comment; mainly useful for :replay files
Calls:
Name: ! |
|
Name: open_file/1 |
Module: tools_commands |
Name: atom_codes/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: edit_file/2 |
Module: tools_commands |
Name: file_exists/1 |
Module: file_systems |
Name: trim_quotes/2 |
Module: prob_cli |
Name: edit_main_file/0 |
Module: prob_cli |
Name: cli_print_machine_info/1 |
Module: prob_cli |
Name: show_origin/1 |
Module: prob_cli |
Name: show_source/1 |
Module: prob_cli |
Name: set_repl_input_file/2 |
Module: prob_cli |
Name: show_pdf_file/1 |
Module: tools_commands |
Name: gen_dot_output/4 |
Module: tools_commands |
Module: tools | |
Name: show_dot_file/1 |
Module: tools_commands |
Name: true |
|
Name: unset_eval_dot_file |
Module: foo_error |
Name: eval_codes/6 |
Module: foo_error |
Name: format/2 |
|
Name: set_eval_dot_file/1 |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: syntax_help/0 |
Module: prob_cli |
Module: prob_cli | |
Name: prob_trimcore_verbose/0 |
Module: prob_cli |
Name: unsat_core_last_expression |
Module: foo_error |
Name: print_bstate_limited/3 |
Module: translate |
Name: expand_const_and_vars_to_full_store/2 |
Module: foo_error |
Name: current_expression/2 |
Module: state_space |
Name: current_state_id/1 |
Module: state_space |
Name: fail |
|
Name: functor/3 |
|
Name: transition/4 |
Module: state_space |
Name: visited_expression/2 |
Module: state_space |
Name: >/2 |
|
Name: get_state_space_stats/4 |
Module: state_space |
Name: print_last_info |
Module: foo_error |
Name: tcltk_reset |
Module: foo_error |
Name: reset_animator/0 |
Module: prob2_interface |
Module: b_show_history | |
Name: cli_ltl_model_check/4 |
Module: prob_cli |
Name: cli_ctl_model_check/4 |
Module: prob_cli |
Name: available_commands/1 |
Module: prob_cli |
Module: prob_cli | |
Name: eval_help/0 |
Module: prob_cli |
Name: det_check_constants/0 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: browse_all_machines/1 |
Module: prob_cli |
Name: browse_machine/1 |
Module: prob_cli |
Name: cli_find_ltl_ap/1 |
Module: prob_cli |
Name: browse/0 |
Module: prob_cli |
Name: halt |
|
Name: halt_exception/1 |
Module: prob_cli |
Called:
Name: eval_line/1 |
Module: prob_cli |
execute(ESteps,ErrOnDeadlock,From) :- cli_execute(ESteps,ErrOnDeadlock,From).
Calls:
Name: cli_execute/3 |
Module: prob_cli |
expected_error(Type) :- option(expect_error(Type)).
expected_error(Type) :- option(expect_error_pos(Type,_Line,_Col)).
Calls:
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli |
file_extension_can_be_loaded(FileExt,_) :- known_spec_file_extension(FileExt,Mode),
load_spec_file_requires_extension(Mode,ProBExtension),
unavailable_extension(ProBExtension,Reason),!,
ajoin(['File with ending .', FileExt,' cannot be loaded because extension not available (',Reason,'):'],Msg),
add_error(probcli,Msg,ProBExtension),
fail.
file_extension_can_be_loaded(_,_). % assume ok; if unrecognized we will load as B machine
Calls:
Name: fail |
|
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: ! |
|
Name: unavailable_extension/2 |
Module: pathes_lib |
Module: pathes_extensions_db | |
Module: prob_cli |
Called:
Name: load_main_file/3 |
Module: prob_cli |
file_info :- file_loaded(true,MainFile), print_file_info(MainFile).
Calls:
Name: print_file_info/1 |
Module: prob_cli |
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
file_loaded(Status) :- file_loaded(Status,_File).
Calls:
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: reset_cli/0 |
Module: prob_cli |
Name: clear_loaded_files/0 |
Module: prob_cli |
Name: check_loaded/1 |
Module: prob_cli |
find_core(wd_prover,_,Core,Result) :-
find_inconsistent_axiom([],Axiom,NecHyps),
Core = [Axiom|NecHyps], Result = contradiction_found.
find_core(z3_bup(MaxSize),Properties,Core,Result) :-
(var(MaxSize) -> MaxSize=2 ; true),
quick_bup_core_up_to(Properties,MaxSize,Core,Result).
Calls:
Name: quick_bup_core_up_to/4 |
Module: foo_error |
Name: true |
|
Name: =/2 |
|
Name: var/1 |
|
Name: ->/3 |
|
Name: find_inconsistent_axiom/3 |
Module: foo_error |
Called:
Name: cli_core_properties/1 |
Module: prob_cli |
generate_atom_list([],[],R) :- !, R=[].
generate_atom_list([],Last,[NewAtom]) :-
reverse(Last,RL),
atom_codes(NewAtom,RL).
generate_atom_list([39|X],[],[QuotedAtom|T]) :- !,
get_quoted_atom(X,[],QuotedAtom,Rest),
strip_leading_ws(Rest,X2),
generate_atom_list(X2,[],T).
generate_atom_list([32|X],Last,[NewAtom|T]) :- !,
reverse(Last,RL),
atom_codes(NewAtom,RL),
strip_leading_ws(X,X2),
generate_atom_list(X2,[],T).
generate_atom_list([H|X],Last,Res) :- generate_atom_list(X,[H|Last],Res).
Calls:
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: strip_leading_ws/2 |
Module: prob_cli |
Name: atom_codes/2 |
|
Name: reverse/2 |
Module: foo_error |
Name: ! |
|
Name: get_quoted_atom/4 |
Module: prob_cli |
Name: =/2 |
Called:
Name: eval_line/1 |
Module: prob_cli |
generate_read_write_matrix(CsvFile) :-
tcltk_read_write_matrix(list(Matrix)),
my_tell(CsvFile),
print_enable_table(Matrix),
told,!.
generate_read_write_matrix(CsvFile) :-
add_error(read_write_matrix,'Generating Read-Write-Matrix failed',CsvFile).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: ! |
|
Name: told |
|
Name: print_enable_table/1 |
Module: foo_error |
Name: my_tell/1 |
Module: prob_cli |
Module: b_read_write_info |
generate_time_stamp(NOW,TS) :- retractall(probcli_time_stamp(_)),
now(NOW),
current_prolog_flag(argv,ArgV),term_hash(ArgV,Hash),
Rnd is Hash mod 1000,
% random(0,1000,Rnd), always returns 216 % TO DO: try to get milliseconds from some library function
TS is (NOW*1000)+Rnd,
assertz(probcli_time_stamp(TS)).
Calls:
Name: assertz/1 |
|
Name: is/2 |
|
Name: term_hash/2 |
Module: terms |
Name: current_prolog_flag/2 |
|
Name: now/1 |
Module: foo_error |
Name: retractall/1 |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
Name: zmq_set_option/1 |
Module: prob_cli |
get_additional_infos(I,Res) :- option(cli_print_machine_info(statistics)),!,
findall(Key-Nr,b_machine_statistics(Key,Nr),I2,I),
get_additional_stats(I2,Res).
get_additional_infos(I,Res) :- get_additional_stats(I,Res).
Calls:
Name: get_additional_stats/2 |
Module: prob_cli |
Name: findall/4 |
|
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: accumulate_infos/2 |
Module: prob_cli |
get_additional_stats(I,Res) :-
findall(Key-Nr,retract_profile_stats(Key,Nr),Res,I). % include additional profiling stats and retract/reset them
Calls:
Name: findall/4 |
Called:
Name: get_additional_infos/2 |
Module: prob_cli |
Name: accumulate_file_infos/3 |
Module: prob_cli |
get_all_options(SOpts) :-
findall(O, recognised_option(O,_,_,_), Opts),
sort(Opts,SOpts).
Calls:
Name: sort/2 |
|
Name: findall/3 |
get_comma_or_space_separated_options(Option,Selection) :-
functor(O,Option,1),
findall(E, (option(O),arg(1,O,CommaSep),
split_by_seperator(CommaSep,Es),
member(E,Es)),
Selection).
Calls:
Name: findall/3 |
|
Name: functor/3 |
get_dot_file(Type,FileName) :- option(dot_analyse_output_prefix(_)),
set_dot_file_prefix_if_option_set(Type),
dot_file_prefix(Dir),
string_concatenate('_',Type,Str1),
string_concatenate(Dir,Str1,F1),
atom_concat(F1,'.dot',FileName).
Calls:
Name: atom_concat/3 |
|
Name: string_concatenate/3 |
Module: tools |
Name: dot_file_prefix/1 |
Module: prob_cli |
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli |
get_error_category_and_type(warning(Cat),Category,Type) :- !, Category=Cat,Type=warning.
get_error_category_and_type(C,C,error).
Calls:
Name: =/2 |
|
Name: ! |
Called:
Name: get_error_sources/0 |
Module: prob_cli |
get_error_or_warning_span(not_yet_extracted,Type,EL,EC) :- check_error_span_file_linecol(Type,_File,EL,EC,_,_).
get_error_or_warning_span(not_yet_extracted,Type,EL,EC) :- check_error_span_file_linecol(warning(Type),_File,EL,EC,_,_).
get_error_or_warning_span(Span,_,EL,EC) :- Span \= not_yet_extracted, extract_line_col(Span,EL,EC,_,_).
Calls:
Name: extract_line_col/5 |
Module: foo_error |
Name: \=/2 |
|
Name: check_error_span_file_linecol/6 |
Module: foo_error |
Called:
Name: error_occurred/4 |
Module: prob_cli |
get_error_sources :- get_error_with_span(ErrSource,Msg,Span), !,
error_occurred_with_msg(ErrSource,Msg,Span),
findall(1,get_error(ErrSource,_),L), length(L,Nr),
(Nr>0 -> N1 is Nr+1, get_error_category_and_type(ErrSource,Cat,Type),
(Type=error -> print_error('*** Occurences of this error: ')
; print_error('*** Occurences of this warning: ')),
print_error(N1),
write_xml_element_to_log(multiple_errors_occurred,[category/Cat,(type)/Type,number/N1])
; true),
get_error_sources.
get_error_sources.
Calls:
Name: RECURSIVE_CALL/0 |
Module: prob_cli |
Name: true |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: print_error/1 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Module: prob_cli | |
Name: is/2 |
|
Name: >/2 |
|
Name: length/2 |
|
Name: findall/3 |
|
Module: prob_cli | |
Name: ! |
|
Name: get_error_with_span/3 |
Module: foo_error |
Called:
Name: get_errors/0 |
Module: prob_cli |
get_errors :-
(get_preference(view_probcli_errors_using_bbresults,true)
-> tools_commands:show_errors_with_bb_results([current]) ; true),
get_error_sources.
Calls:
Name: get_error_sources/0 |
Module: prob_cli |
Name: true |
|
Module: tools_commands | |
Name: get_preference/2 |
Module: foo_error |
Name: ->/3 |
Called:
Name: eval_line/1 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli | |
Name: reload_mainfile/0 |
Module: prob_cli |
Name: load_spec_file/3 |
Module: prob_cli |
Module: prob_cli |
get_full_machine_file_path(File,AbsFile) :-
get_modulename_filename(File,Name), get_filename_extension(File,ExtF),
(get_machine_file_number(Name,ExtF,_Nr,AbsFile)
-> get_parent_directory(File,Parent),
(Parent='' -> true % no path provided
; File=AbsFile -> true % full path provided
; b_absolute_file_name_relative_to_main_machine(File,AbsFile) -> true % consistent partial path provided
; add_error(check_machine_file_sha,'File path is inconsistent with used file:',File),
format_with_colour_nl(user_error,[orange],'! File actually used in B specification:~n ~w',[AbsFile])
)
; add_error(check_machine_file_sha,'Could not locate the file for:',File),
b_absolute_file_name_relative_to_main_machine(File,AbsFile)
).
Calls:
Module: bmachine | |
Name: add_error/3 |
Module: foo_error |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: true |
|
Name: ->/3 |
|
Name: =/2 |
|
Name: get_parent_directory/2 |
Module: tools |
Module: bmachine | |
Name: get_filename_extension/2 |
Module: tools |
Module: tools |
Called:
Name: check_machine_file_sha/2 |
Module: prob_cli |
get_info(FF-Nr,FF,Nr).
get_info(FF/Nr,FF,Nr).
Called:
Name: accumulate_infos_2/2 |
Module: prob_cli |
Name: print_vals/3 |
Module: prob_cli |
Name: merge_acc_infos/4 |
Module: prob_cli |
Name: print_titles/2 |
Module: prob_cli |
get_next_nr(GNr) :- retract(dot_file_number(Nr)), N1 is Nr+1,
assertz(dot_file_number(N1)), GNr = Nr.
Calls:
Name: =/2 |
|
Name: assertz/1 |
|
Name: is/2 |
|
Name: dot_file_number/1 |
Module: prob_cli |
Name: retract/1 |
Called:
Module: prob_cli |
get_possible_fuzzy_match_options(Option,FuzzyMatches) :-
normalise_option_atom(Option,RX),
atom_codes(RX,OCodes),
get_all_options(SOpts),
findall(Target,(member(Target,SOpts),atom_codes(Target,TargetCodes),
fuzzy_match_codes_lower_case(OCodes,TargetCodes)),FuzzyMatches).
Calls:
Name: findall/3 |
|
Name: get_all_options/1 |
Module: prob_cli |
Name: atom_codes/2 |
|
Name: normalise_option_atom/2 |
Module: prob_cli |
Called:
Name: set_pref/2 |
Module: prob_cli |
Module: prob_cli |
get_possible_next_operation_for_execute(CurState,LastActionName,ActionName) :-
get_preference(randomise_operation_order,false),
get_preference(use_po,true), % PROOF_INFO: should we use a proper preference for use_po_for_execute ?
b_or_z_mode,
b_top_level_operation(LastActionName),
% prevent trying ActionName which we know is infeasible according to previous LastActionName
% we rely on the fact that execute tries the operations in order
findall(AN,specfile_possible_trans_name_for_successors(CurState,AN),ANS),
!,
member_with_last(ActionName,ANS,LastActionName,FoundLast),
(var(FoundLast)
-> % ActionName occurs before LastActionName, this means
% we did try this ActionName at the last execution step and it was not possible
% format('Checking operation ~w against ~w~n',[ActionName,LastActionName]),debug:nl_time,
%Note: we could use result of cbc enabling analysis if it was performed
(static_cannot_enable(LastActionName,ActionName)
-> %format('Operation ~w : ~w cannot be enabled by ~w : ~w~n',[Nr2,ActionName,Nr1,LastActionName]),
%print('- '),
fail
; true
)
; true % we did not try this ActionName at the last execution step
).
get_possible_next_operation_for_execute(CurState,_LastActionName,ActionName) :-
specfile_possible_trans_name_for_successors(CurState,ActionName).
Calls:
Name: specfile_possible_trans_name_for_successors/2 |
Module: foo_error |
Name: true |
|
Name: fail |
|
Name: static_cannot_enable/2 |
Module: static_enabling_analysis |
Name: ->/3 |
|
Name: var/1 |
|
Name: member_with_last/4 |
Module: prob_cli |
Name: ! |
|
Name: findall/3 |
|
Name: b_top_level_operation/1 |
Module: bmachine |
Name: b_or_z_mode |
Module: foo_error |
Name: get_preference/2 |
Module: foo_error |
Called:
Name: cli_execute_trans/5 |
Module: prob_cli |
get_possible_options_completion_msg(Option,Msg) :-
normalise_option_atom(Option,RX),
get_all_options(SOpts),
get_possible_completions_msg(RX,SOpts,Msg).
Calls:
Module: tools_matching | |
Name: get_all_options/1 |
Module: prob_cli |
Name: normalise_option_atom/2 |
Module: prob_cli |
Called:
Module: prob_cli |
get_probcli_elapsed_runtime(timer(RT1,_),RTotTime) :-
statistics(runtime,[RT2,_]), RTotTime is RT2-RT1.
Calls:
Name: is/2 |
|
Name: statistics/2 |
Called:
Name: cli_trans/5 |
Module: prob_cli |
get_probcli_elapsed_walltime(timer(_,WT1),WTotTime) :-
statistics(walltime,[WT2,_]), WTotTime is WT2-WT1.
Calls:
Name: is/2 |
|
Name: statistics/2 |
Called:
Name: cli_trans/5 |
Module: prob_cli |
get_quoted_atom([],Acc,QuotedAtom,[]) :- reverse(Acc,R), atom_codes(QuotedAtom,R).
get_quoted_atom([39|T],Acc,QuotedAtom,T) :- !, reverse(Acc,R), atom_codes(QuotedAtom,R).
get_quoted_atom([H|T],Acc,QuotedAtom,Rest) :- get_quoted_atom(T,[H|Acc],QuotedAtom,Rest).
Calls:
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: atom_codes/2 |
|
Name: reverse/2 |
Module: foo_error |
Name: ! |
Called:
Name: generate_atom_list/3 |
Module: prob_cli |
get_state_errors(ID) :- state_error(ID,_,X), X\=invariant_violated, X\=abort_error(_,_,_,_),
create_state_error_description(X,Msg),error_occurred(Msg),fail.
get_state_errors(ID) :- time_out_for_invariant(ID),error_occurred(time_out_for_invariant),fail.
get_state_errors(ID) :- time_out_for_assertions(ID),error_occurred(time_out_for_assertions),fail.
get_state_errors(ID) :- time_out_for_node(ID,_,time_out),error_occurred(time_out),fail.
get_state_errors(ID) :-
time_out_for_node(ID,_,virtual_time_out(_)), %print(virtual_time_out_for_node(ID)),nl,
error_occurred(virtual_time_out),fail.
get_state_errors(_).
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: time_out_for_node/3 |
Module: state_space |
Module: state_space | |
Name: time_out_for_invariant/1 |
Module: state_space |
Module: prob_cli | |
Name: \=/2 |
|
Name: state_error/3 |
Module: state_space |
Called:
Name: check_for_errors/2 |
Module: prob_cli |
Name: get_state_space_errors/0 |
Module: prob_cli |
get_state_space_errors :- option(strict_raise_error),
!,
(\+ option(no_invariant_violations),invariant_violated(ID)
-> (option_verbose ->
format('Invariant violation in state with id = ~w~n',[ID]),
b_interpreter:analyse_invariant_for_state(ID) % caused issue for test 1076
; format('Invariant violation in state with id = ~w (use -v to print more details)~n',[ID])
),
error_occurred(invariant_violation)
; true),
(state_error(_,_,abort_error(TYPE,Msg,_,Span)) -> error_occurred(TYPE,error,Span,Msg) ; true),
get_state_errors(_).
get_state_space_errors.
Calls:
Name: get_state_errors/1 |
Module: prob_cli |
Name: true |
|
Name: error_occurred/4 |
Module: prob_cli |
Name: state_error/3 |
Module: state_space |
Name: ->/3 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: format/2 |
|
Module: b_interpreter | |
Name: option_verbose/0 |
Module: prob_cli |
Name: invariant_violated/1 |
Module: state_space |
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: ! |
Called:
Module: prob_cli |
get_value_type(CS, Res) :- is_interval_closure(CS,_,_),!, Res = 'interval closure'.
get_value_type(closure(_,_,_),Res) :- !, Res= 'symbolic closure'.
get_value_type(avl_set(_), Res) :- !, Res= 'explicit AVL set'.
get_value_type(Val,VF) :- functor(Val,VF,_).
Calls:
Name: functor/3 |
|
Name: =/2 |
|
Name: ! |
|
Name: is_interval_closure/3 |
Module: custom_explicit_sets |
Called:
Module: prob_cli |
get_xml_add_description(Span,XML) :-
extract_additional_description(Span,Msg),!,
XML = [additional_description/Msg].
get_xml_add_description(_,[]).
Calls:
Name: =/2 |
|
Name: ! |
|
Name: extract_additional_description/2 |
Module: foo_error |
Called:
Name: get_xml_span/2 |
Module: prob_cli |
get_xml_span(Span,XML) :- extract_file_line_col(Span,FullFilename,Line,Col,EndLine,EndCol),!,
XML = [file/FullFilename,start_line/Line,end_line/EndLine,start_col/Col,end_col/EndCol|XT],
get_xml_add_description(Span,XT).
get_xml_span(Span,XML) :- get_xml_add_description(Span,XML).
Calls:
Module: prob_cli | |
Name: =/2 |
|
Name: ! |
|
Name: extract_file_line_col/6 |
Module: error_manager |
Called:
Name: error_occurred/4 |
Module: prob_cli |
go_cli :-
% set_prob_application_type(probcli) is already done at compile_time
current_prolog_flag(argv,ArgV),
run_probcli_with_junit_check(ArgV).
Calls:
Module: prob_cli | |
Name: current_prolog_flag/2 |
go_proxy :-
catch( run_probcli(['-s','8888'],[proxy]), halt(ExitCode),
( nl,write('CLI halt prevented, exit code '),write(ExitCode),nl) ).
Calls:
Name: catch/3 |
halt_exception :- halt_exception(0).
Calls:
Name: halt_exception/1 |
Module: prob_cli |
Called:
Name: cli_show_help/2 |
Module: prob_cli |
halt_exception(Code) :- throw(halt(Code)).
Calls:
Name: throw/1 |
Called:
Name: cli_show_help/2 |
Module: prob_cli |
halt_prob(ExitCode) :-
(probcli_time_stamp(NOW) -> halt_prob(NOW,ExitCode) ; halt_prob(0,ExitCode)).
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: probcli_time_stamp/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: cli_load_files2/3 |
Module: prob_cli |
Name: zmq_start_worker/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: ltsmin_ltl_output/2 |
Module: prob_cli |
Name: start_ltsmin_srv/2 |
Module: prob_cli |
Name: halt_prob/1 |
Module: prob_cli |
Name: test_kodkod_and_exit/2 |
Module: prob_cli |
halt_prob(NOW,ExitCode) :-
write_xml_element_to_log(probcli_halted_prematurely,[now/NOW]),
close_all_xml_groups_in_log_until('probcli-run'),
stop_xml_probcli_run(NOW),
halt_exception(ExitCode).
Calls:
Name: halt_exception/1 |
Module: prob_cli |
Name: stop_xml_probcli_run/1 |
Module: prob_cli |
Name: close_all_xml_groups_in_log_until/1 |
Module: foo_error |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Called:
Name: cli_load_files2/3 |
Module: prob_cli |
Name: zmq_start_worker/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: ltsmin_ltl_output/2 |
Module: prob_cli |
Name: start_ltsmin_srv/2 |
Module: prob_cli |
Name: halt_prob/1 |
Module: prob_cli |
Name: test_kodkod_and_exit/2 |
Module: prob_cli |
handle_symbolic_model_check_result(counterexample_found) :- !, error_occurred(invariant_violation).
handle_symbolic_model_check_result(property_holds) :- !,
format('Model checking complete, invariant holds~n',[]).
handle_symbolic_model_check_result(solver_and_provers_too_weak) :- !,
format('Model checking incomplete because a constraint could not be solved in time~n',[]),
error_occurred(model_check_incomplete).
handle_symbolic_model_check_result(limit_reached) :- !,
format('Model checking incomplete because an iteration limit was reached~n',[]),
error_occurred(model_check_incomplete).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: format/2 |
|
Name: ! |
Called:
Module: prob_cli |
Meta: if_option_set(-,0)
if_option_set(Option,Call) :-
if_option_set(Option,Call,true).
Calls:
Name: if_option_set/3 |
Module: prob_cli |
Called:
Name: start_ltsmin_srv/2 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Name: run_probcli3/2 |
Module: prob_cli |
Name: set_prefs/0 |
Module: prob_cli |
Name: cli_start_animation/1 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: ltsmin_ltl_output/2 |
Module: prob_cli |
Name: zmq_start_animation/0 |
Module: prob_cli |
Meta: if_option_set(-,0,0)
if_option_set(Option,Then,Else) :-
(option(Option) -> call_for_option(Then) ; call_for_option(Else)).
Calls:
Name: call_for_option/1 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: start_ltsmin_srv/2 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Name: run_probcli3/2 |
Module: prob_cli |
Name: set_prefs/0 |
Module: prob_cli |
Name: cli_start_animation/1 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: ltsmin_ltl_output/2 |
Module: prob_cli |
Name: zmq_start_animation/0 |
Module: prob_cli |
Meta: if_option_set_loaded(-,-,0)
if_option_set_loaded(Option,Action,Call) :-
( option(Option),check_loaded_not_empty(Action) ->
call_for_option(Call)
; true).
Calls:
Name: true |
|
Name: call_for_option/1 |
Module: prob_cli |
Name: check_loaded_not_empty/1 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Meta: if_options_set(-,0)
if_options_set(Option,Call) :- % allow multiple solutions for Option
option(Option),call(Call),fail.
if_options_set(_,_).
Calls:
Name: fail |
|
Name: call/1 |
|
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli | |
Name: set_analyse_hook/1 |
Module: prob_cli |
Name: run_probcli3/2 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli |
Meta: ifm_option_set(-,0)
ifm_option_set(Option,Call) :-
ifm_option_set(Option,Call,true).
Calls:
Name: ifm_option_set/3 |
Module: prob_cli |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: cli_visb_history/3 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli |
Meta: ifm_option_set(-,-,0)
ifm_option_set(Option,Then,Else) :- % can perform multiple options
findall(Then,option(Option),As),
(As=[] -> call_for_option(Else) ; perform(As)).
Calls:
Name: perform/1 |
Module: prob_cli |
Name: call_for_option/1 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: findall/3 |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: cli_visb_history/3 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli |
Meta: ifm_option_set_loaded(-,-,0)
ifm_option_set_loaded(Option,Action,Call) :- % can perform multiple options
findall(Call,(option(Option),check_loaded_not_empty(Action)),As),
perform(As).
Called:
Module: prob_cli |
important_info(FF/Nr) :-
\+ irrelevant_xml_info(FF),
(Nr=0 -> \+ irrelevant_xml_if_zero(FF) ; true).
Calls:
Name: true |
|
Name: irrelevant_xml_if_zero/1 |
Module: prob_cli |
Name: not/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: irrelevant_xml_info/1 |
Module: prob_cli |
incomplete_warning(ltl,ltl_incomplete) :- !.
incomplete_warning(ctl,ctl_incomplete) :- !.
incomplete_warning(X,X).
Calls:
Name: ! |
Called:
Name: check_status/4 |
Module: prob_cli |
init_req2 :- option(cli_check_properties).
init_req2 :- option(zmq_assertion(_,_,_)).
init_req2 :- option(cli_check_assertions(_,_)).
init_req2 :- option(process_latex_file(_,_)).
init_req2 :- option(eval_string_or_file(_,_,_,_,_)). % ensure that we initialise/precompile empty machine in case no main file specified; currently no longer required
init_req2 :- option(check_abstract_constants).
init_req2 :- option(visb_click(_)).
init_req2 :- option(dot_command_for_expr(Cat,_,_,_,_)),
nonmember(Cat,[transition_diagram,expression_coverage]). % see test 1033, option also works with empty state space
Calls:
Name: nonmember/2 |
|
Name: option/1 |
dynamic predicate |
Called:
Name: initialise_required/0 |
Module: prob_cli |
initialise :- probcli_time_stamp(NOW),cli_start_initialisation(NOW).
Calls:
Module: prob_cli | |
Name: probcli_time_stamp/1 |
dynamic predicate |
initialise_cli :- counter_init,
new_counter(cli_execute_inits),
new_counter(cli_errors), new_counter(cli_warnings),
new_counter(cli_expected_errors).
Calls:
Name: new_counter/1 |
Module: counter/counter |
Name: counter_init |
Module: counter/counter |
Called:
Name: probcli_startup/0 |
Module: prob_cli |
initialise_required :- option(initialise), \+ empty_machine_loaded.
initialise_required :- \+ option(default_trace_check), \+ option(trace_check(_,_,_)), \+ option(state_trace(_)),
\+ option(load_state(_)),
\+ empty_machine_loaded,
\+ (option(execute(Nr,_,_)), Nr>=2), % execute will also initialise machine
init_req2.
Calls:
Name: init_req2/0 |
Module: prob_cli |
Name: >=/2 |
|
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: empty_machine_loaded/0 |
Module: prob_cli |
install_prob_lib(Lib,Opts) :- install_lib_component(Lib,Opts).
Calls:
Name: install_lib_component/2 |
Module: pathes_lib |
interactive_animate_machine :-
nl,print('IMPORTANT: Do not use this mode for automatic tools.'),nl,
print('The output format can change arbitrarily in future versions.'),nl,
print('Please terminate your input with a dot (.) and then type return.'),nl,nl,
animate_machine2.
Calls:
Name: animate_machine2/0 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
irrelevant_xml_if_zero(timeout).
irrelevant_xml_if_zero(enum_warning).
Called:
Name: important_info/1 |
Module: prob_cli |
irrelevant_xml_info(true_after_expansion).
irrelevant_xml_info(false_after_expansion).
irrelevant_xml_info(unknown_after_expansion).
irrelevant_xml_info(total_after_expansion).
Called:
Name: important_info/1 |
Module: prob_cli |
is_constant_binding(bind(C,_)) :- b_is_constant(C).
Calls:
Name: b_is_constant/1 |
Module: bmachine |
is_dash(45). % regular dash
is_dash(8212). % Unicode double dash; sometimes automatically generated from -- by e.g., macOS Mail program
Called:
Name: normalise_option_atom/2 |
Module: prob_cli |
is_eventb_b(FN) :- append(_,FN,".eventb").
Calls:
Name: append/3 |
Called:
Name: zmq_worker_load_model/1 |
Module: prob_cli |
is_ws(32).
Called:
Name: parse_eval_command/3 |
Module: prob_cli |
Name: strip_ws/2 |
Module: prob_cli |
Name: strip_ws2/2 |
Module: prob_cli |
just_assert_option(depth_first).
just_assert_option(breadth_first).
just_assert_option(strict_raise_error).
just_assert_option(no_deadlocks).
just_assert_option(no_invariant_violations).
just_assert_option(no_goal).
just_assert_option(no_ltl).
just_assert_option(no_assertion_violations).
just_assert_option(no_state_errors).
just_assert_option(no_counter_examples).
Called:
Name: call_probcli_option/1 |
Module: prob_cli |
keep_first_value(memory_used). % memory consumption of the first run is relevant
Called:
Name: merge_value/5 |
Module: prob_cli |
known_spec_file_extension('P',xtl).
known_spec_file_extension(als,alloy).
known_spec_file_extension(csp,csp).
known_spec_file_extension(cspm,csp).
known_spec_file_extension(def,b).
known_spec_file_extension(eval,b_eval).
known_spec_file_extension(eventb,eventb).
known_spec_file_extension(fuzz,z).
known_spec_file_extension(imp,b).
known_spec_file_extension(mch,b).
known_spec_file_extension(pb,b).
known_spec_file_extension(pla,alloy). % Prolog AST of Alloy translation
known_spec_file_extension(prob,b).
known_spec_file_extension(ref,b).
known_spec_file_extension(rmch,b_rules).
known_spec_file_extension(smt,smt).
known_spec_file_extension(smt2,smt).
known_spec_file_extension(sys,b).
known_spec_file_extension(tex,z).
known_spec_file_extension(tla,tla).
known_spec_file_extension(zed,z).
Called:
Module: prob_cli | |
Name: cli_load_files3/4 |
Module: prob_cli |
load_b_file_with_options(File) :-
(option(release_java_parser) -> Options = [release_java_parser,use_fastread]
; option(fast_read_prob) -> Options = [use_fastread] % use fastread for large .prob files
; Options = []),
% TO DO: automatically release if no option requires parsing and no more file uses it; or print warning if release will affect other options like -repl (DEFINITIONS not available,...)
load_b_file(File,Options).
Calls:
Name: load_b_file/2 |
Module: foo_error |
Name: =/2 |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: load_spec_file/2 |
Module: prob_cli |
load_main_file(MainFile,NOW,Already_FullyProcessed) :- retractall(loaded_main_file(_,_)),
debug_print(20,'% Loading: '), debug_println(20,MainFile),
writeln_log_time(loading(NOW,MainFile)),
get_filename_extension(MainFile,Ext),
debug_println(6,file_extension(Ext)),
file_extension_can_be_loaded(Ext,MainFile),
start_probcli_timer(Timer),
load_spec_file(Ext,MainFile,Already_FullyProcessed),
stop_probcli_debug_timer(Timer,'% Finished loading'),
(Already_FullyProcessed==true -> true
; assertz(loaded_main_file(Ext,MainFile))).
Calls:
Name: assertz/1 |
|
Name: true |
|
Name: ==/2 |
|
Name: ->/3 |
|
Module: prob_cli | |
Name: load_spec_file/3 |
Module: prob_cli |
Name: start_probcli_timer/1 |
Module: prob_cli |
Module: prob_cli | |
Name: debug_println/2 |
Module: foo_error |
Name: get_filename_extension/2 |
Module: tools |
Name: writeln_log_time/1 |
Module: foo_error |
Name: debug_print/2 |
Module: foo_error |
Name: retractall/1 |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
Name: reload_mainfile/0 |
Module: prob_cli |
load_prob_file_with_options(File) :-
(option(release_java_parser) -> Options = [use_fastread] ; Options = []),
load_prob_file(File,Options).
Calls:
Name: load_prob_file/2 |
Module: foo_error |
Name: =/2 |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: load_spec_file/2 |
Module: prob_cli |
load_spec_file('csp',MainFile) :- !, load_cspm_spec_from_cspm_file(MainFile).
load_spec_file('cspm',MainFile) :- !, load_cspm_spec_from_cspm_file(MainFile).
load_spec_file('P',MainFile) :- !, load_xtl_spec_from_prolog_file(MainFile).
load_spec_file('p',MainFile) :- !, load_xtl_spec_from_prolog_file(MainFile). % sometimes windows is confused about the upper case letter....
load_spec_file('eventb',MainFile) :- !, load_eventb_file(MainFile).
load_spec_file('v',MainFile) :- !,
print('Warning: .v proof rule file format no longer supported, use -eval_rule_file FILE'),nl,
% but even that may not work; some older rule files required predicate variables
load_b_file_with_options(MainFile). % Siemens Rule File; now use -eval_rule_file
load_spec_file('prob',MainFile) :- !,load_prob_file_with_options(MainFile). % .prob files
load_spec_file('mch',MainFile) :- !,load_b_file_with_options(MainFile).
load_spec_file('sys',MainFile) :- !,load_b_file_with_options(MainFile).
load_spec_file('ref',MainFile) :- !,load_b_file_with_options(MainFile).
load_spec_file('imp',MainFile) :- !,load_b_file_with_options(MainFile).
load_spec_file('rmch',MainFile) :- !,load_b_file_with_options(MainFile).
load_spec_file('def',MainFile) :- !,load_b_file_with_options(MainFile). % .def DEFINITIONS file
load_spec_file('fuzz',MainFile) :- !,tcltk_open_z_file(MainFile).
load_spec_file('tex',MainFile) :- !,tcltk_open_z_tex_file(MainFile).
load_spec_file('zed',MainFile) :- !,tcltk_open_z_tex_file(MainFile). % proz .zed file
load_spec_file('als',MainFile) :- !,tcltk_open_alloy_file(MainFile).
load_spec_file('pla',MainFile) :- !,tcltk_open_alloy_prolog_ast_file(MainFile). % maybe we should detect .als.pl
load_spec_file('tla',MainFile) :- !, load_tla_file(MainFile).
load_spec_file('eval',File) :- !, % .eval file
cli_set_empty_machine,
assertz(option(eval_string_or_file(file(default),File,exists,_,norecheck))).
load_spec_file('pb',File) :- !, cli_set_empty_machine, % .pb file
cli_set_empty_machine,
assertz(option(eval_string_or_file(file(default),File,exists,_,norecheck))).
load_spec_file(EXT,MainFile) :- print_error('Unknown file extension, assuming B machine:'),
print_error(EXT),
load_b_file_with_options(MainFile).
Calls:
Module: prob_cli | |
Name: print_error/1 |
Module: tools_printing |
Name: assertz/1 |
|
Name: cli_set_empty_machine/0 |
Module: prob_cli |
Name: ! |
|
Name: load_tla_file/1 |
Module: foo_error |
Name: tcltk_open_alloy_prolog_ast_file/1 |
Module: foo_error |
Name: tcltk_open_alloy_file/1 |
Module: foo_error |
Name: tcltk_open_z_tex_file/1 |
Module: foo_error |
Name: tcltk_open_z_file/1 |
Module: foo_error |
Module: prob_cli | |
Name: nl |
|
Name: print/1 |
|
Name: load_eventb_file/1 |
Module: foo_error |
Module: prob2_interface | |
Module: prob2_interface |
Called:
Name: load_main_file/3 |
Module: prob_cli |
load_spec_file('pl',MainFile, Already_FullyProcessed) :- !, Already_FullyProcessed=true,
printsilent('Processing PO file: '),printsilent(MainFile),nls,
load_po_file(MainFile),
(option(timeout(TO)) -> set_disprover_timeout(TO) ; reset_disprover_timeout),
(option(disprover_options(L)) -> set_disprover_options(L) ; set_disprover_options([])),
println_silent('Running ProB Disprover'),
run_disprover_on_all_pos(Summary),
print_disprover_stats,
accumulate_infos(disprover,[po_files-1|Summary]),
get_errors,
(option(cli_check_disprover_result(Infos)) -> check_required_infos(Infos,Summary,load_po_file)
; option(strict_raise_error) -> check_required_infos([false-0,unknown-0,failure-0],Summary,load_po_file)
% TO DO: provide way for user to specify expected info
; true),
cli_process_options_for_alrady_fully_processed_file(MainFile),
clear_loaded_machines.
load_spec_file(EXT,MainFile,Already_FullyProcessed) :- (EXT='smt2' ; EXT= 'smt'), !,
Already_FullyProcessed=true,
printsilent('Processing SMT file: '),printsilent(MainFile),nls,
(option(eval_repl([])) -> Opts = [repl] ; Opts=[]),
smtlib2_file(MainFile,Opts).
load_spec_file(EXT,F,false) :- load_spec_file(EXT,F).
Calls:
Name: load_spec_file/2 |
Module: prob_cli |
Name: smtlib2_file/2 |
Module: foo_error |
Name: =/2 |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: ! |
|
Name: clear_loaded_machines |
Module: foo_error |
Module: prob_cli | |
Name: true |
|
Name: check_required_infos/3 |
Module: prob_cli |
Name: get_errors/0 |
Module: prob_cli |
Name: accumulate_infos/2 |
Module: prob_cli |
Name: print_disprover_stats |
Module: foo_error |
Name: run_disprover_on_all_pos/1 |
Module: foo_error |
Name: println_silent/1 |
Module: foo_error |
Name: set_disprover_options/1 |
Module: foo_error |
Name: reset_disprover_timeout |
Module: foo_error |
Name: set_disprover_timeout/1 |
Module: foo_error |
Name: load_po_file/1 |
Module: foo_error |
Called:
Name: load_main_file/3 |
Module: prob_cli |
load_state(StateFile) :- debug_println(20,'% Loading state space from file'),
state_space:tcltk_load_state(StateFile).
Calls:
Name: tcltk_load_state/1 |
Module: state_space |
Name: debug_println/2 |
Module: foo_error |
loaded_main_file(File) :- loaded_main_file(_Ext,File).
Calls:
Name: loaded_main_file/2 |
dynamic predicate |
Called:
Module: prob_cli | |
Name: cli_checkAssertion/4 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_csp_get_assertions/0 |
Module: prob_cli |
Module: prob_cli | |
Name: loaded_root_filename/1 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Module: prob_cli |
loaded_root_filename(RootName) :- loaded_main_file(MainFile),
get_modulename_filename(MainFile,RootName).
Calls:
Module: tools | |
Name: loaded_main_file/1 |
Module: prob_cli |
Called:
Name: cli_check_assertions/3 |
Module: prob_cli |
Name: cli_check_properties/1 |
Module: prob_cli |
logxml_write_ids(variables,Prefix) :- !,
current_expression(_,CurState),
remove_constants(CurState,VarState),
% TO DO: store also final state in xml_log
write_bstate_to_log(VarState,Prefix).
logxml_write_ids(_,Prefix) :- !,
current_expression(_,CurState),
expand_const_and_vars_to_full_store(CurState,EState),
write_bstate_to_log(EState,Prefix).
Calls:
Name: write_bstate_to_log/2 |
Module: foo_error |
Name: expand_const_and_vars_to_full_store/2 |
Module: foo_error |
Name: current_expression/2 |
Module: state_space |
Name: ! |
|
Name: remove_constants/2 |
Module: prob_cli |
ltl_check_assertions :-
(option(ltl_limit(Limit)) -> true; Limit= -1), % -1 means no limit
formatsilent('Model checking LTL assertions~n',[]),
ltl_check_assertions(Limit,Outcome),!,
( Outcome = pass -> print_green('LTL check passed'),nl
; Outcome = fail -> print_red('*** LTL check failed'),nl,error_occurred(ltl)
; Outcome = no_tests -> print_red('*** No LTL assertions found, test failed'),nl,definite_error_occurred
; print_red('*** An error occurred in the LTL assertion test'),nl,
definite_error_occurred).
ltl_check_assertions :-
add_internal_error('Call failed:',ltl_check_assertions),definite_error_occurred.
Calls:
Module: prob_cli | |
Name: add_internal_error/2 |
Module: foo_error |
Name: nl |
|
Name: print_red/1 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print_green/1 |
Module: tools_printing |
Name: ! |
|
Name: ltl_check_assertions/2 |
Module: foo_error |
Name: formatsilent/2 |
Module: foo_error |
Name: true |
|
Name: option/1 |
dynamic predicate |
ltl_check_file(Filename) :-
(option(ltl_limit(Limit)) -> true; Limit= -1), % -1 means no limit
ajoin(['Model checking LTL assertions from file ',Filename],Msg),
print_repl_prompt_s(Msg),nl,
( parse_ltlfile(Filename, Formulas)
-> ltl_check_formulas(Formulas,Limit)
; print_red('An error occurred while parsing the LTL file.\n'),
definite_error_occurred
).
Calls:
Module: prob_cli | |
Name: print_red/1 |
Module: tools_printing |
Name: ltl_check_formulas/2 |
Module: prob_cli |
Name: parse_ltlfile/2 |
Module: foo_error |
Name: ->/3 |
|
Name: nl |
|
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: ajoin/2 |
Module: tools_strings |
Name: =/2 |
|
Name: true |
|
Name: option/1 |
dynamic predicate |
ltl_check_formulas([],_) :-
print_green('All LTL formulas checked.\n').
ltl_check_formulas([formula(Name,F)|Rest],Limit) :-
print('Checking formula '),print(Name),print(':\n'),
ltl_model_check2(F,Limit,init,Status),
( Status == no ->
print_red('Counter-example found for formula \"'),print_red(Name),"
print_red('\", saving trace file.\n'),"
ajoin(['ltlce_', Name, '.trace'], Tracefile),
tcltk_save_history_as_trace_file(prolog,Tracefile),
add_error(ltl_counterexample,'Counter-example was found')
; Status == ok ->
ltl_check_formulas(Rest,Limit)
; Status == incomplete ->
ajoin(['Model was not completly model-checked, aborted after ',Limit,' new states'],
Msg),
add_error(ltl,Msg)
;
ajoin(['Model checker returns unexpected result (',Status,')'],Msg),
add_error(ltl,Msg)).
Calls:
Name: add_error/2 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: ==/2 |
|
Name: ->/3 |
|
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Module: b_trace_checking | |
Name: print_red/1 |
Module: tools_printing |
Name: ltl_model_check2/4 |
Module: foo_error |
Name: print/1 |
|
Name: print_green/1 |
Module: tools_printing |
Called:
Name: ltl_check_file/1 |
Module: prob_cli |
ltsmin_ltl_output(Filename, NOW) :-
if_option_set(ltl_formula_model_check(Formula, _),true),
ltsmin_generate_ltlfile(Formula, Filename),
halt_prob(NOW,0). % if we additionally specify -ltsformula, we do not want to model check it
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: ltsmin_generate_ltlfile/2 |
Module: ltsmin/ltsmin |
Name: if_option_set/2 |
Module: prob_cli |
make_assertionwps([]).
make_assertionwps([H|T]) :- conjunction_to_list(H,HL),
sort_assertions(HL,SL),
append_assertion(SL),
make_assertionwps(T).
Calls:
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: append_assertion/1 |
Module: prob_cli |
Name: sort_assertions/2 |
Module: prob_cli |
Name: conjunction_to_list/2 |
Module: bsyntaxtree |
Called:
Name: zmq_worker_load_model/1 |
Module: prob_cli |
match_info(X,X).
match_info(comparison_operator(Comp,Nr),ActualNr) :-
number(Nr), number(ActualNr),call(Comp,ActualNr,Nr).
Calls:
Name: call/3 |
|
Name: number/1 |
Called:
Name: check_single_info/2 |
Module: prob_cli |
mc_ok_arg(Arg,X) :- Arg==all,!,max_tagged_integer(X).
mc_ok_arg(Arg,N) :- arg_is_number(Arg,N).
Calls:
Name: arg_is_number/2 |
Module: tools |
Name: max_tagged_integer/1 |
Module: tools_platform |
Name: ! |
|
Name: ==/2 |
mcm_test_case_generation(ADepth,AMaxStates,ATarget,Output) :-
arg_is_number(ADepth,MaxDepth),
arg_is_number(AMaxStates,MaxStates),
bmachine:b_parse_machine_predicate(ATarget,Target),!,
get_comma_or_space_separated_options(mcm_cover,Events),
(option(silent) -> true
; print('mcm test case generation, maximum search depth: '),print(MaxDepth),nl,
print('mcm test case generation, maximum number of states: '),print(MaxStates),nl,
print('mcm test case generation, target state predicate: '),print_bexpr(Target),nl,
print('mcm test case generation, output file: '),print(Output),nl,
print('mcm test case generation, events to cover: '),print_list(Events),nl
),
explore_and_generate_testcases(Events,Target,MaxDepth,MaxStates,Output,NumTests,Uncovered),
printsilent('mcm test case generation, generated test cases: '),printsilent(NumTests),nls,
print_uncovered('mcm test case generation, ',Uncovered).
mcm_test_case_generation(_ADepth,_AMaxStates,_ATarget,_Output) :-
print_error('MCM Test Case Generation failed'),
error_occurred(mcm_tests).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: print_uncovered/2 |
Module: prob_cli |
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: explore_and_generate_testcases/7 |
Module: foo_error |
Name: nl |
|
Name: print_list/1 |
Module: prob_cli |
Name: print/1 |
|
Name: print_bexpr/1 |
Module: translate |
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Module: prob_cli | |
Name: ! |
|
Module: bmachine | |
Name: arg_is_number/2 |
Module: tools |
member_with_last(X,[H|T],Last,FoundLast) :-
(H=Last -> !,FoundLast=true, member(X,[H|T]) ; X=H).
member_with_last(X,[_|T],Last,FoundLast) :- member_with_last(X,T,Last,FoundLast).
Calls:
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: =/2 |
|
Name: member/2 |
|
Name: ! |
|
Name: ->/3 |
Called:
Module: prob_cli |
memory_intensive_option(cli_mc(_)).
memory_intensive_option(ltl_formula_model_check(_,_)).
memory_intensive_option(ctl_formula_model_check(_,_)).
memory_intensive_option(refinement_check(_,_,_)).
memory_intensive_option(generate_all_traces_until(_,_,_)).
Called:
Name: trimcore_if_useful/1 |
Module: prob_cli |
merge_acc(Cur,[],_,Cur).
merge_acc(Cur,[Next|T],Nr,Res) :-
N1 is Nr+1,
merge_acc_infos(Cur,Next,N1,NextCur),
merge_acc(NextCur,T,N1,Res).
Calls:
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: merge_acc_infos/4 |
Module: prob_cli |
Name: is/2 |
Called:
Module: prob_cli |
merge_acc_infos([],S,_,Res) :- !, Res=S.
merge_acc_infos(S,[],_,Res) :- !, Res=S.
merge_acc_infos([C1|T1],[C2|T2],Nr,[Cat-ResVal|MT]) :-
get_info(C1,Cat,Val1), get_info(C2,Cat,Val2),
merge_value(Cat,Val1,Val2,Nr,ResVal),!,
merge_acc_infos(T1,T2,Nr,MT).
merge_acc_infos([C1|T1],T2,Nr,[C1|MT]) :-
add_warning(merge_acc_infos,'Missing value: ',C1),
merge_acc_infos(T1,T2,Nr,MT).
Calls:
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: add_warning/3 |
Module: foo_error |
Name: ! |
|
Name: merge_value/5 |
Module: prob_cli |
Name: get_info/3 |
Module: prob_cli |
Name: =/2 |
Called:
Name: merge_acc/4 |
Module: prob_cli |
merge_accumulated_infos(Context) :- individual_file_infos(File,Context,_),!,
findall(Infos,individual_file_infos(File,Context,Infos),[Infos1|RestInfos]),
merge_acc(Infos1,RestInfos,1,Result),
assertz(merged_individual_file_infos(File,Context,Result)).
Calls:
Name: assertz/1 |
|
Name: merge_acc/4 |
Module: prob_cli |
Name: findall/3 |
|
Name: ! |
|
Name: individual_file_infos/3 |
dynamic predicate |
Called:
Name: cli_start_model_check/3 |
Module: prob_cli |
merge_value(Cat,Val1,_Val2,_,ResVal) :- keep_first_value(Cat),!, ResVal=Val1.
merge_value(_,Val,Val,_,ResVal) :- !, ResVal=Val.
merge_value(Cat,Val1,Val2,Nr,ResVal) :- compute_average(Cat),!, ResVal is (Val1*(Nr-1)/Nr) + (Val2 / Nr).
merge_value(Cat,Val1,Val2,Nr,ResVal) :-
add_warning(merge_value,'Differing values: ',val(Cat,Val1,Val2)),
ResVal is (Val1*(Nr-1)/Nr) + (Val2 / Nr).
Calls:
Name: is/2 |
|
Name: add_warning/3 |
Module: foo_error |
Name: ! |
|
Name: compute_average/1 |
Module: prob_cli |
Name: =/2 |
|
Name: keep_first_value/1 |
Module: prob_cli |
Called:
Name: merge_acc_infos/4 |
Module: prob_cli |
model_check_aux(Nr,T1,W1,Time,ErrRes) :-
(option(no_deadlocks) -> FindDeadlocks=0 ; FindDeadlocks=1),
(option(no_invariant_violations) -> FindInvViolations=0 ; FindInvViolations=1),
(option(no_goal) -> FindGoal=0 ; FindGoal=1),
(option(no_state_errors) -> FindStateErrors=0 ; FindStateErrors=1),
(option(no_assertion_violations)
-> FindAssViolations=0
; FindAssViolations=1
),
get_preference(por,POR),
get_preference(pge,PGE),
StopAtFullCoverage=0,
%STOPMCAFTER = 86400000, /* 86400000 = 1 day timeout */
STOPMCAFTER = 1152921504606846975, /* equals 13,343,998,895 days */
InspectExistingNodes = 1,
write_xml_element_to_log(model_checking_options,[find_deadlocks/FindDeadlocks,
find_invariant_violations/FindInvViolations, find_goal/FindGoal,
find_assertion_violations/FindAssViolations,
find_state_errors/FindStateErrors,
partial_order_reduction/POR,
partial_guard_evaluation/PGE,
inspect_existing_nodes/InspectExistingNodes]),
(tcltk_interface:do_model_check(Nr,NodesAnalysed,STOPMCAFTER,ErrRes,
FindDeadlocks,FindInvViolations,FindGoal,
FindAssViolations,FindStateErrors,StopAtFullCoverage,POR,PGE, InspectExistingNodes)
-> (statistics(runtime,[T2,_]), statistics(walltime,[W2,_]),
Time1 is T2-T1, WTime is W2-W1,
(model_checker: expired_static_analysis_time(AnalysisTime) ->
Time is Time1 - AnalysisTime
; Time = Time1, AnalysisTime=0),
formatsilent('Model checking time: ~w ms (~w ms walltime)~n',[Time,WTime]),
formatsilent('States analysed: ~w~n',[NodesAnalysed]),
get_state_space_stats(_,NrTransitions,_,_),
printsilent('Transitions fired: '),printsilent(NrTransitions),nls,
(get_current_breadth_first_level(Level)
-> formatsilent('Breadth-first levels: ~w~n',[Level]) % is this the equivalent of TLC's diameter?
; true),
write_xml_element_to_log(model_checking_statistics,
[result/ErrRes,runtime/Time,walltime/WTime,
states/NodesAnalysed,transitions/NrTransitions,staticAnalysisTime/AnalysisTime]),
(ErrRes = no
-> print('No counter example Found, not all states visited'),nl,
add_warning(model_check_incomplete,'Not all states examined due to limit set by user: ',Nr)
; ErrRes=all
-> (tcltk_find_max_reached_node
-> (not_interesting(_)
-> print('No counter example found. However, not all transitions were computed (and some states not satisfying SCOPE predicate were ignored) !')
; print('No counter example found. However, not all transitions were computed !')
)
; not_interesting(_)
-> print_green('No counter example found. ALL states (satisfying SCOPE predicate) visited.')
% b_get_machine_searchscope(Scope)
; print_green('No counter example found. ALL states visited.')
),nl,
add_model_checking_warnings(FindInvViolations,FindDeadlocks,FindGoal,FindAssViolations)
; % ErrRes is not no or all
print_red('*** COUNTER EXAMPLE FOUND ***'),nl,
debug_println(20,ErrRes),nl,
tcltk_interface:translate_error_for_tclk(ErrRes,TclTkRes),
print(TclTkRes),nl,
(option(silent) -> true
; option(no_counter_examples) -> true % -nocounter
; tcltk_interface:tcltk_get_history(list(Hist)),
length(Hist,Len),
format('*** TRACE (length=~w):~n',[Len]),
reverse(Hist,Trace),
print_nr_list(Trace),
(silent_mode(off),
current_state_id(ID),invariant_violated(ID)
-> b_interpreter:analyse_invariant_for_state(ID)
; true)
),
error_occurred(TclTkRes)
),nl
)
; % do_model_check failed
statistics(runtime,[T2,_]), Time1 is T2-T1,
(model_checker: expired_static_analysis_time(AnalysisTime) -> Time is Time1 - AnalysisTime
; Time = Time1),
printsilent('Model checking time: '), printsilent(Time), printsilent(' ms'),nls,
print_error('*** Model checking FAILED '),nl,
ErrRes=fail,
definite_error_occurred
).
Calls:
Module: prob_cli | |
Name: =/2 |
|
Name: nl |
|
Name: print_error/1 |
Module: tools_printing |
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: is/2 |
|
Module: model_checker | |
Name: ->/3 |
|
Name: statistics/2 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Module: b_interpreter | |
Name: invariant_violated/1 |
Module: state_space |
Name: current_state_id/1 |
Module: state_space |
Name: silent_mode/1 |
Module: foo_error |
Name: print_nr_list/1 |
Module: prob_cli |
Name: reverse/2 |
Module: foo_error |
Name: format/2 |
|
Name: length/2 |
|
Name: tcltk_get_history/1 |
Module: tcltk_interface |
Name: option/1 |
dynamic predicate |
Name: print/1 |
|
Module: tcltk_interface | |
Name: debug_println/2 |
Module: foo_error |
Name: print_red/1 |
Module: tools_printing |
Module: prob_cli | |
Name: print_green/1 |
Module: tools_printing |
Name: not_interesting/1 |
Module: state_space |
Name: tcltk_find_max_reached_node |
Module: foo_error |
Name: add_warning/3 |
Module: foo_error |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: formatsilent/2 |
Module: foo_error |
Module: state_space_exploration_modes | |
Name: get_state_space_stats/4 |
Module: state_space |
Name: do_model_check/13 |
Module: tcltk_interface |
Name: get_preference/2 |
Module: foo_error |
my_tell(File) :-
catch(
tell(File),
error(_E,_), % existence_error(_,_)
add_error_fail(tell,'File cannot be written to: ',File)).
Calls:
Name: catch/3 |
no_command_issued :- \+ command_option(_).
Calls:
Name: command_option/1 |
Module: prob_cli |
Name: not/1 |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
normalise_option_atom(X,RX) :- atom(X),!,
atom_codes(X,CodesX),
% remove leading dash
(CodesX=[45,45,H|T], H\=45 % Double dash --Option
-> maplist(prob_cli:convert_dash_to_underscore,[H|T],HT2),
RXCodes=[45|HT2]
; CodesX = [Dash|T], is_dash(Dash) % single dash
-> maplist(prob_cli:convert_dash_to_underscore,T,T2),
RXCodes=[45|T2]
; maplist(prob_cli:convert_dash_to_underscore,CodesX,RXCodes)
),
atom_codes(RX,RXCodes).
normalise_option_atom(T,T).
Calls:
Name: atom_codes/2 |
|
Name: maplist/3 |
Module: foo_error |
Name: =/2 |
|
Name: is_dash/1 |
Module: prob_cli |
Name: ->/3 |
|
Name: \=/2 |
|
Name: ! |
|
Name: atom/1 |
Called:
Name: check_file_arg/2 |
Module: prob_cli |
Name: recognised_cli_option/4 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli |
normalise_pref_name(X,RX) :- atom(X),!,
atom_codes(X,CodesX),
maplist(prob_cli:convert_dash_to_underscore,CodesX,C2),
atom_codes(RX,C2).
normalise_pref_name(T,T).
Calls:
Name: atom_codes/2 |
|
Name: maplist/3 |
Module: foo_error |
Name: ! |
|
Name: atom/1 |
not_command_option(verbose).
not_command_option(very_verbose).
not_command_option(profiling_on).
not_command_option(set_pref(_,_)).
not_command_option(set_preference_group(_,_)).
not_command_option(set_card(_,_)).
not_command_option(set_argv(_)).
not_command_option(silent).
not_command_option(strict_raise_error).
not_command_option(no_color).
Called:
Name: command_option/1 |
Module: prob_cli |
open_file_at_position(OriginTerm) :-
extract_file_line_col(OriginTerm,FILE,LINE,_COL,_Erow,_Ecol),
edit_file(FILE,LINE).
Calls:
Name: edit_file/2 |
Module: tools_commands |
Name: extract_file_line_col/6 |
Module: error_manager |
Called:
Name: show_origin/1 |
Module: prob_cli |
option_only_works_for_single_file(zmq_assertion(_Identifier)).
option_only_works_for_single_file(zmq_master(_Identifier)).
Called:
Name: cli_load_files2/3 |
Module: prob_cli |
option_requires_all_properties(cli_mc(_,_)).
option_requires_all_properties(cli_check_properties). % we may want to check all properties
option_requires_all_properties(cli_core_properties(_)).
option_requires_all_properties(cli_random_animate(_)).
option_requires_all_properties(default_trace_check).
option_requires_all_properties(trace_check(_,_,_)).
option_requires_all_properties(state_trace(_)).
option_requires_all_properties(mcm_tests(_,_,_,_)).
option_requires_all_properties(cbc_tests(_,_,_)).
option_requires_all_properties(animate).
option_requires_all_properties(initialise). % INITIALISATION may access constants
option_requires_all_properties(eval_repl(_)).
option_requires_all_properties(eval_string_or_file(_,_,_,_,_)).
option_requires_all_properties(ltl_assertions).
option_requires_all_properties(ltl_file(_)).
option_requires_all_properties(refinement_check(_,_,_)).
option_requires_all_properties(cli_start_mc_with_tlc).
option_requires_all_properties(cli_symbolic_model_check(_)).
option_requires_all_properties(process_latex_file(_,_)).
option_requires_all_properties(cli_wd_check(_,_)).
option_requires_all_properties(cli_lint(_)).
option_requires_all_properties(visb_history(_,_,_)).
Called:
Module: prob_cli |
option_verbose :- (option(verbose) -> true ; option(very_verbose)).
Calls:
Name: option/1 |
dynamic predicate |
Name: true |
|
Name: ->/3 |
Called:
Name: prob_trimcore/0 |
Module: prob_cli |
Name: cli_start_selfcheck/0 |
Module: prob_cli |
Name: print_help/0 |
Module: prob_cli |
Name: cli_trans/5 |
Module: prob_cli |
Name: print_full_version/1 |
Module: prob_cli |
Name: show_cache/1 |
Module: prob_cli |
Module: prob_cli | |
Name: eval_help/0 |
Module: prob_cli |
Name: print_max_walltime/0 |
Module: prob_cli |
Name: run_probcli3/2 |
Module: prob_cli |
Name: get_state_space_errors/0 |
Module: prob_cli |
Name: cli_print_pred_info/1 |
Module: prob_cli |
Name: print_state_silent/1 |
Module: prob_cli |
Name: cli_execute_aux/7 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli |
options_allow_start_without_file :- option(run_benchmark(_,_,_)).
options_allow_start_without_file :- option(eval_repl(_)).
options_allow_start_without_file :- option(eval_string_or_file(_,_,_,_,_)).
options_allow_start_without_file :- option(check_log(_)).
options_allow_start_without_file :- option(process_latex_file(_,_)).
options_allow_start_without_file :- option(socket(_,_)).
Calls:
Name: option/1 |
dynamic predicate |
Called:
Name: cli_load_files/2 |
Module: prob_cli |
options_can_eval_any_cst :- option(eval_repl(_)).
options_can_eval_any_cst :- option(eval_string_or_file(_,_,_,_,_)).
options_can_eval_any_cst :- option(dot_command(_,_,_)).
options_can_eval_any_cst :- option(dot_command_for_expr(_,_,_,_,_)).
options_can_eval_any_cst :- option(process_latex_file(_,_)).
options_can_eval_any_cst :- option(logxml_write_ids(all,_)). % the user writes out constants (not just variables) to file: also do not filter
Calls:
Name: option/1 |
dynamic predicate |
Called:
Module: prob_cli |
parse_eval_command([C|Rest],CommandName,Argument) :- [C]=":",
eval_command(Cmd,CommandName),
append(Cmd,RestArg,Rest),
(RestArg = [Letter1|_] -> is_ws(Letter1) /* otherwise command name continues */ ; true),
strip_ws(RestArg,Argument),
(eval_command_help(CommandName,[],_), Argument = [_|_]
-> format_with_colour_nl(user_error,[red],'WARNING: Command ~w does not take arguments!',[CommandName])
; eval_command_help(CommandName,[_|_],_), Argument = []
-> format_with_colour_nl(user_error,[red],'WARNING: Command ~w requires arguments!',[CommandName])
; true).
Calls:
Name: true |
|
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: =/2 |
|
Name: eval_command_help/3 |
Module: prob_cli |
Name: ->/3 |
|
Name: strip_ws/2 |
Module: prob_cli |
Name: is_ws/1 |
Module: prob_cli |
Name: append/3 |
|
Name: eval_command/2 |
Module: prob_cli |
Called:
Name: eval_line/1 |
Module: prob_cli |
perform([]).
perform([A|T]) :-
call_for_option(A),
perform(T).
Calls:
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: call_for_option/1 |
Module: prob_cli |
Called:
Name: ifm_option_set_loaded/3 |
Module: prob_cli |
Name: ifm_option_set/3 |
Module: prob_cli |
perform_feedback_options_after_exception :-
(option(check_op_cache(_)) -> cli_check_op_cache([]) ; true),
if_options_set(csv_table_command(TECommand,TableFormulas,TableOptions,TableCSVFile),
csv_table_command(TECommand,TableFormulas,TableOptions,TableCSVFile)),
(option(get_coverage_information(FCC)) -> pretty_print_coverage_information_to_file(FCC) ; true),
(option(cli_print_statistics(X)), (cli_print_statistics(X) -> fail) ; true).
Calls:
Name: true |
|
Name: fail |
|
Name: cli_print_statistics/1 |
Module: prob_cli |
Name: ->/2 |
|
Name: option/1 |
dynamic predicate |
Name: pretty_print_coverage_information_to_file/1 |
Module: foo_error |
Name: ->/3 |
|
Name: if_options_set/2 |
Module: prob_cli |
Name: cli_check_op_cache/1 |
Module: prob_cli |
perform_random_init_after_setup_constants :- \+ option(initialise), we_need_only_static_assertions(_),!,
printsilent('% NOT INITIALISING MACHINE (not required)'),nls.
perform_random_init_after_setup_constants :-
(perform_random_step(2) % 2 is the step nr not the number of steps
-> true
; error_occurred(initialisation_fails),
fail).
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Name: perform_random_step/1 |
Module: prob_cli |
Name: ->/3 |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: ! |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: not/1 |
Called:
Module: prob_cli |
perform_random_initialisation :- perform_random_initialisation(_).
Calls:
Module: prob_cli |
Called:
Module: prob_cli |
perform_random_initialisation(Steps) :- current_state_id(State), State \= root, !,
print_error('init can only be used in initial state'), print_error(State),error_occurred(initialisation),
Steps=0.
perform_random_initialisation(Steps) :- b_mode, b_machine_has_constants_or_properties,!,
(perform_random_step(Ops,_Len,RanChoice,1)
-> nth1(RanChoice,Ops,Choice), %print(Choice),nl,
(Choice = 'PARTIAL_SETUP_CONSTANTS'
-> error_occurred(setup_constants_inconsistent)
; true)
; error_occurred(setup_constants_fails),fail), % $setup_constants TODO: properties unknown or unsat
perform_random_init_after_setup_constants, Steps=2. % $initialise_machine
perform_random_initialisation(Steps) :- (perform_random_step(1) -> Steps=1 ; error_occurred(initialisation_fails),fail).
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: =/2 |
|
Name: perform_random_step/1 |
Module: prob_cli |
Name: ->/3 |
|
Module: prob_cli | |
Name: true |
|
Name: nth1/3 |
Module: foo_error |
Name: perform_random_step/4 |
Module: prob_cli |
Name: ! |
|
Module: bmachine | |
Name: b_mode |
Module: foo_error |
Name: print_error/1 |
Module: tools_printing |
Name: \=/2 |
|
Name: current_state_id/1 |
Module: state_space |
Called:
Module: prob_cli |
perform_random_initialisation_if_necessary(Steps) :-
b_or_z_mode, current_state_id(State), State=root,!, perform_random_initialisation(Steps).
perform_random_initialisation_if_necessary(0).
Calls:
Module: prob_cli | |
Name: ! |
|
Name: =/2 |
|
Name: current_state_id/1 |
Module: state_space |
Name: b_or_z_mode |
Module: foo_error |
Called:
Name: perform_random_steps/2 |
Module: prob_cli |
perform_random_step(StepNr) :- perform_random_step(_Ops,_Len,_RanChoice,StepNr).
Calls:
Name: perform_random_step/4 |
Module: prob_cli |
perform_random_step(Ops,Len,RanChoice,StepNr) :-
cli_computeOperations(Ops),
current_state_id(CurID), check_for_errors(CurID,StepNr),
length(Ops,Len), Len>0,
debug_println(20,perform_random_step(Len,StepNr)),
L1 is Len+1,
(do_det_checking, Len>1
-> print_error('Non-deterministic step in animate or init'),
print_error('State:'),
print_current_state, print_error('Enabled Operations: '), print_options(Ops,1),
error_occurred(det_check)
; true),
random(1,L1,RanChoice),
debug_println(20,random(L1,RanChoice)),
cli_animateOperationNr(RanChoice,Ops,StepNr).
Calls:
Name: cli_animateOperationNr/3 |
Module: prob_cli |
Name: debug_println/2 |
Module: foo_error |
Name: random/3 |
Module: random |
Name: true |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print_options/2 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: print_current_state/0 |
Module: prob_cli |
Name: >/2 |
|
Name: do_det_checking/0 |
Module: prob_cli |
Name: ->/3 |
|
Name: is/2 |
|
Name: length/2 |
|
Name: check_for_errors/2 |
Module: prob_cli |
Name: current_state_id/1 |
Module: state_space |
Name: cli_computeOperations/1 |
Module: prob_cli |
perform_random_steps(Nr,_) :- \+ number(Nr),!,
print_error('Argument to animate not a number'), print_error(Nr),error_occurred(animate).
perform_random_steps(Nr,_) :- Nr<0, !,
print_error('Argument to animate is a negative number'), print_error(Nr),error_occurred(animate).
perform_random_steps(0,_) :- !.
perform_random_steps(Nr,ErrorOnDeadlock) :-
(perform_random_initialisation_if_necessary(Steps) % if Nr=1 we currently will also execute the INITIALISATION ! TO DO: fix
-> perform_random_steps_aux(Steps,Nr,ErrorOnDeadlock)
; % we have setup_constants_fails or initialisation_fails
print_error('Could not initialise model for animation')
).
Calls:
Name: print_error/1 |
Module: tools_printing |
Module: prob_cli | |
Module: prob_cli | |
Name: ->/3 |
|
Name: ! |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: </2 |
|
Name: number/1 |
|
Name: not/1 |
Called:
Name: cli_random_animate/3 |
Module: prob_cli |
perform_random_steps_aux(Nr,Max,_) :- Nr >= Max,!, debug_println(9,performed_random_steps(Nr)).
perform_random_steps_aux(Nr,Max,ErrorOnDeadlock) :-
N1 is Nr+1,
(perform_random_step(N1)
-> perform_random_steps_aux(N1,Max,ErrorOnDeadlock)
; /* deadlock */
write_xml_element_to_log(deadlock_found,[step/Nr]),
(ErrorOnDeadlock=true, \+ option(no_deadlocks)) ->
print_error('Deadlock occurred during -animate, at step number:'), print_error(Nr),
error_occurred(animate)
; print('% Deadlock occurred during -animate, at step number:'), print(Nr),nl
).
Calls:
Name: nl |
|
Name: print/1 |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: print_error/1 |
Module: tools_printing |
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: =/2 |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: ->/3 |
|
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: perform_random_step/1 |
Module: prob_cli |
Name: is/2 |
|
Name: debug_println/2 |
Module: foo_error |
Name: ! |
|
Name: >=/2 |
Called:
Name: perform_random_steps/2 |
Module: prob_cli |
perform_symbolic_model_checking(ic3,Result) :- !, ic3_symbolic_model_check(Result).
perform_symbolic_model_checking(ctigar,Result) :- !, ctigar_symbolic_model_check(Result).
perform_symbolic_model_checking(kinduction,Result) :- !, kinduction_symbolic_model_check(Result).
perform_symbolic_model_checking(tinduction,Result) :- !, tinduction_symbolic_model_check(Result).
perform_symbolic_model_checking(bmc,Result) :- !, bmc_symbolic_model_check(Result).
perform_symbolic_model_checking(Alg,_) :- add_error_fail(cli_symbolic_model_check,'Invalid symbolic model checking algorithm: ',Alg).
Calls:
Name: add_error_fail/3 |
Module: foo_error |
Name: bmc_symbolic_model_check/1 |
Module: foo_error |
Name: ! |
|
Name: tinduction_symbolic_model_check/1 |
Module: foo_error |
Name: kinduction_symbolic_model_check/1 |
Module: foo_error |
Name: ctigar_symbolic_model_check/1 |
Module: foo_error |
Name: ic3_symbolic_model_check/1 |
Module: foo_error |
Called:
Module: prob_cli |
plantuml_command(PCommand,UmlFile) :- call_plantuml_command(PCommand,UmlFile).
Calls:
Name: call_plantuml_command/2 |
Module: foo_error |
plantuml_command_for_expr(PECommand,Expr,UmlFile,Opts) :-
call_plantuml_command_for_expr(PECommand,Expr,UmlFile,Opts).
Calls:
Name: call_plantuml_command_for_expr/4 |
Module: foo_error |
pr_acc_infos_aux(Stream,NrFilesProcessed,FileMode) :-
(NrFilesProcessed>1,accumulated_infos(_,_,_) -> true ; option(benchmark_info_csv_output(_,_))),!,
print_individual_file_infos_csv(Stream,FileMode),
start_xml_group_in_log(summary,files_processed,NrFilesProcessed),
((FileMode = append ; NrFilesProcessed = 1)
-> true % do not print accumulated info line
; format(Stream,'Analysis summary (~w files processed): ',[NrFilesProcessed]),
findall(Context-F-Nr,accumulated_infos(Context,F,Nr),L), sort(L,SL),
maplist(prob_cli:pracc(Stream),SL),nl(Stream)
),
% TO DO: write infos to XML log
(option(print_version(VERSIONKIND)) ->
datime(datime(Year,Month,Day,Hour,Min,_Sec)),
format(Stream,'CSV file generated at ~w:~w on the date ~w/~w/~w using probcli:~n',[Hour,Min,Year,Month,Day]),
print_version(VERSIONKIND,Stream),
print_csv_prefs(Stream)
; true),
(option(cli_print_statistics(memory)) -> print_memory_statistics(Stream) ; true),
stop_xml_group_in_log_no_statistics(summary).
pr_acc_infos_aux(_,_NrFilesProcessed,_Mode).
Calls:
Name: stop_xml_group_in_log_no_statistics/1 |
Module: foo_error |
Name: true |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: print_csv_prefs/1 |
Module: prob_cli |
Name: print_version/2 |
Module: prob_cli |
Name: format/3 |
|
Name: datime/1 |
Module: foo_error |
Name: nl/1 |
|
Name: maplist/2 |
Module: foo_error |
Name: sort/2 |
|
Name: findall/3 |
|
Name: =/2 |
|
Name: start_xml_group_in_log/3 |
Module: foo_error |
Module: prob_cli | |
Name: ! |
|
Name: accumulated_infos/3 |
dynamic predicate |
Name: >/2 |
pracc(Stream,Context-F-Nr) :- format(Stream,'~w:~w:~w ',[Context,F,Nr]).
Calls:
Name: format/3 |
pred_eval_hook(_Conjunct,true,_EnumWarning,_IsExpanded, _CS) :-
\+ option(dot_generate_for_all_formulas),!. % don't generate .dot for true formulas, unless explicitly requested
pred_eval_hook(Conjunct,Status,_EnumWarning,_IsExpanded, CS) :-
printsilent('Generating dotfile for: '),printsilent(CS),nls,
(write_dot_graph_to_new_file(Status,Conjunct) -> true
; add_error(dot_output,'Writing dot to file failed: ',CS)).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: true |
|
Module: prob_cli | |
Name: ->/3 |
|
Name: nls |
Module: foo_error |
Name: printsilent/1 |
Module: foo_error |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Name: not/1 |
pretty_print_internal_rep(PPFILE,MachName,TYPES,unicode) :- !,
set_unicode_mode,
call_cleanup(b_write_machine_representation_to_file(MachName,TYPES,PPFILE),unset_unicode_mode).
pretty_print_internal_rep(PPFILE,'$auto',_TYPES,atelierb) :- animation_minor_mode(eventb),!,
b_write_eventb_machine_to_classicalb_to_file(PPFILE). % old -ppB option:
pretty_print_internal_rep(PPFILE,MachName,TYPES,atelierb) :- !,
set_atelierb_mode(native),
call_cleanup(b_write_machine_representation_to_file(MachName,TYPES,PPFILE),unset_atelierb_mode).
pretty_print_internal_rep(PPFILE,MachName,TYPES,_) :- b_write_machine_representation_to_file(MachName,TYPES,PPFILE).
Calls:
Module: bmachine | |
Name: call_cleanup/2 |
|
Name: set_atelierb_mode/1 |
Module: translate |
Name: ! |
|
Module: bmachine | |
Name: animation_minor_mode/1 |
Module: foo_error |
Name: set_unicode_mode/0 |
Module: translate |
pretty_print_internal_rep_to_B(PPFILE) :- b_write_eventb_machine_to_classicalb_to_file(PPFILE).
Calls:
Module: bmachine |
pretty_print_prolog_file(PPFILE) :-
file_loaded(_,MainFile), % TODO: check if main file is really Prolog file
(loaded_main_file(Ext,_), \+( (Ext='P' ; Ext='prob' ; Ext= 'pl') )
-> add_warning(probcli,'The -pppl command is designed to work with Prolog files (.P, .prob or .pl), not with: ',Ext) ; true),
format('Pretty-Printing Prolog file ~w to ~w~n',[MainFile,PPFILE]),
tcltk_nested_read_prolog_file_as_codes(MainFile,list(Codes)),
safe_intelligent_open_file(PPFILE,write,Stream),
format(Stream,'~s~n',[Codes]),
close(Stream).
Calls:
Name: close/1 |
|
Name: format/3 |
|
Module: tools_io | |
Module: tools_printing | |
Name: format/2 |
|
Name: true |
|
Name: add_warning/3 |
Module: foo_error |
Name: =/2 |
|
Name: not/1 |
|
Name: loaded_main_file/2 |
dynamic predicate |
Name: ->/3 |
|
Name: file_loaded/2 |
dynamic predicate |
print_accumulated_infos(NrFilesProcessed) :-
(option(benchmark_info_csv_output(File,FileMode))
-> safe_intelligent_open_file(File,FileMode,Stream) % FileMode is write or append
; Stream=user_output),
call_cleanup(pr_acc_infos_aux(Stream,NrFilesProcessed,FileMode),
close(Stream)), !.
print_accumulated_infos(NrFilesProcessed) :-
add_internal_error('Call failed:',print_accumulated_infos(NrFilesProcessed)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: ! |
|
Name: call_cleanup/2 |
|
Name: =/2 |
|
Module: tools_io | |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: cli_load_files/2 |
Module: prob_cli |
Name: cli_load_files2/3 |
Module: prob_cli |
print_bindings([]) :- !.
print_bindings([binding(Var,_,PPV)|T]) :- !, print(Var),print('='),print(PPV),
(T=[] -> true ; print(', '), print_bindings(T)).
print_bindings([binding(Var,_,PPV,_Tag)|T]) :- !, print(Var),print('='),print(PPV),
(T=[] -> true ; print(', '), print_bindings(T)).
print_bindings(X) :- print('### Internal Error: illegal binding list: '), print(X),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: ! |
Called:
Name: print_current_state/0 |
Module: prob_cli |
print_cbc_stats(Res,_NOW) :- length(Res,Len), Ops is Len-2, % Header + Init
CBC_Calls is Ops*(Ops+1), % +1 for INITIALISATION
findall(TO,(member(list([_|T]),Res), member(TO,T),is_timeout_enabling_result(TO)),TOS),
length(TOS,NrTOS),
format('% CBC Enabling Stats:~n% Nr of events: ~w~n% Nr of cbc calls: ~w, Timeout results: ~w~n',[Ops,CBC_Calls,NrTOS]),
write_xml_element_to_log(cbc_enabling_stats,[nr_events/Ops,cbc_calls/CBC_Calls,nr_timeouts/NrTOS]).
Calls:
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: format/2 |
|
Name: length/2 |
|
Name: findall/3 |
|
Name: is/2 |
Called:
Module: prob_cli |
print_compile_time_flags :-
compile_time_flags(list(Flags)),
(Flags=[], \+ option_verbose -> true ; format(' COMPILE TIME FLAGS: ~w~N',[Flags])).
Calls:
Name: format/2 |
|
Name: true |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: not/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: compile_time_flags/1 |
Module: compile_time_flags |
Called:
Name: print_full_version/2 |
Module: prob_cli |
print_cpp_version(Stream) :-
available_extension(regexp_extension),!,
get_cpp_version(V),
format(Stream,' C++ Version for extensions: ~w~n',[V]).
print_cpp_version(_).
Calls:
Name: format/3 |
|
Name: get_cpp_version/1 |
Module: regexp/regexp |
Name: ! |
|
Name: available_extension/1 |
Module: pathes_lib |
Called:
Name: print_full_version/2 |
Module: prob_cli |
Name: print_version/2 |
Module: prob_cli |
print_csv_prefs(Stream) :- \+ \+ option(set_preference_group(_,_)),
format(Stream,'PREFERENCE GROUP,Setting~n',[]),
option(set_preference_group(P,V)),
format(Stream,'~w,~w~n',[P,V]),
fail.
print_csv_prefs(Stream) :- \+ \+ option(set_pref(_,_)),
format(Stream,'PREFERENCE,Value~n',[]),
option(set_pref(P,V)),
format(Stream,'~w,~w~n',[P,V]),
fail.
print_csv_prefs(_).
Calls:
Name: fail |
|
Name: format/3 |
|
Name: option/1 |
dynamic predicate |
Name: not/1 |
Called:
Name: pr_acc_infos_aux/3 |
Module: prob_cli |
print_current_state :- current_state_id(CurID), print('ID ==> '), print(CurID),nl,
getStateValues(CurID,State),
print_bindings(State),
(specfile:b_or_z_mode,\+is_initialised_state(CurID)
-> print_red(' Not yet initialised.'),print_mode_info, debug_println(10,state(State)) ; nl).
Calls:
Name: nl |
|
Name: debug_println/2 |
Module: foo_error |
Name: print_mode_info/0 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Name: is_initialised_state/1 |
Module: prob2_interface |
Name: not/1 |
|
Name: b_or_z_mode/0 |
Module: specfile |
Name: ->/3 |
|
Name: print_bindings/1 |
Module: prob_cli |
Name: getStateValues/2 |
Module: foo_error |
Name: print/1 |
|
Name: current_state_id/1 |
Module: state_space |
Called:
Name: animate_machine2/0 |
Module: prob_cli |
Name: perform_random_step/4 |
Module: prob_cli |
print_eval_command_help(Codes) :-
eval_command(Codes,Cmd),
eval_command_help(Cmd,Args,Descr),
(Args = []
-> format('Command ~w~n Syntax :~s~n ~w~n',[Cmd,Codes,Descr])
; Args=[Arg] -> format('Command ~w~n Syntax :~s ~w~n ~w~n',[Cmd,Codes,Arg,Descr])
; Args=opt(Arg) -> format('Command ~w~n Syntax :~s [~w]~n ~w~n',[Cmd,Codes,Arg,Descr])
; format('Command ~w~n Syntax :~s ~w~n ~w~n',[Cmd,Codes,Args,Descr])).
Calls:
Name: format/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: eval_command_help/3 |
Module: prob_cli |
Name: eval_command/2 |
Module: prob_cli |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
print_eval_results :- findall(R/N, eval_result(R,N), L), sort(L,SL),
(SL=[] -> true ; format('Evaluation results: ~w~n',[SL])).
Calls:
Name: format/2 |
|
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: sort/2 |
|
Name: findall/3 |
Called:
Module: prob_cli |
print_extensions(Stream) :- findall(E,available_extension(E),Es),
format(Stream,' EXTENSIONS: ~w~N',[Es]).
Calls:
Name: format/3 |
|
Name: findall/3 |
Called:
Name: print_full_version/2 |
Module: prob_cli |
print_file_info(F) :-
print('Specification_File('), print(F), print(')'),nl.
Calls:
Name: nl |
|
Name: print/1 |
Called:
Name: file_info/0 |
Module: prob_cli |
print_full_version(Stream) :-
(option_verbose ->
(option(very_verbose)
-> print_full_version(Stream,very_verbose)
; print_full_version(Stream,verbose)
)
; print_full_version(Stream,normal)
).
Calls:
Name: print_full_version/2 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: option_verbose/0 |
Module: prob_cli |
Called:
Name: print_full_version/1 |
Module: prob_cli |
Name: print_version/2 |
Module: prob_cli |
print_full_version(Stream,Verbose) :-
format(Stream,'ProB Command Line Interface~n',[]),
print_probcli_version(Stream),
( Verbose=normal -> true
;
current_prolog_flag(system_type,SysType),
format(Stream,' Prolog System Type: ~p~N', [SysType]), % development or runtime
safe_absolute_file_name(prob_home('.'),AppDir),
format(Stream,' Application Path: ~p~N', [AppDir]),
print_host_version(Stream),
print_java_version(Stream),
print_cpp_version(Stream),
(Verbose = very_verbose
-> print_prolog_flags(Stream), print_extensions(Stream), print_modules(Stream),
check_lib_contents(Stream,verbose)
; check_lib_contents(Stream,silent)
)
), print_compile_time_flags.
Calls:
Module: prob_cli | |
Name: check_lib_contents/2 |
Module: pathes_lib |
Name: print_modules/1 |
Module: prob_cli |
Name: print_extensions/1 |
Module: prob_cli |
Name: print_prolog_flags/1 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: print_cpp_version/1 |
Module: prob_cli |
Name: print_java_version/1 |
Module: prob_cli |
Name: print_host_version/1 |
Module: prob_cli |
Name: format/3 |
|
Module: tools | |
Name: current_prolog_flag/2 |
|
Name: true |
|
Name: print_probcli_version/1 |
Module: prob_cli |
Called:
Name: print_full_version/1 |
Module: prob_cli |
Name: print_version/2 |
Module: prob_cli |
Description:
print(' -parsercp CP class path of the B Parser, this has to be a valid Java class path'),nl,
print(' -cspm load CSP-M .csp file rather than B Machine .mch/.ref/.imp File'),nl,
print(' -csp load CSP-M .pl file rather than B Machine File'),nl,
print_help :-
print_version(full),
print('Usage: probcli FILE [OPTIONS]'),nl,
print(' OPTIONS are: '),nl,
print(' -mc Nr model check; checking at most Nr states'),nl,
print(' -model_check model check without limit on states explored'),nl,
( \+ option_verbose ->
print(' -noXXX XXX=dead,inv,goal,ass (for model check)'),nl % -nodead, -noinv, -nogoal, -noass
;
print(' -nodead do not look for deadlocks (for model check, animate, execute)'),nl,
print(' -noinv do not look for invariant violations (for model check, animate, execute)'),nl,
print(' -nogoal do not look for GOAL predicate (for model check, execute)'),nl,
print(' -noass do not look for ASSERTION violations (for model check, execute)'),nl
),
print(' -bf proceed breadth-first (default is mixed bf/df)'),nl,
print(' -df proceed depth-first'),nl,
print(' -mc_mode M M=hash,heuristic,random,dlk,breadth-first,depth-first,mixed,size'),nl, % dlk stands for out_degree_hash
print(' -global_time_out N total timeout in ms for model/refinement checking and'),nl,
print(' and execute steps and disprover checks'),nl,
print(' -disable_timeout disable timeouts for operations, invariants,....'),nl, % speeds up mc
print(' -t trace check (associated .trace file must exist)'),nl,
print(' -init initialise specification'),nl,
print(' -cbc OPNAME constraint-based invariant checking for an operation'),nl,
print(' (you can also use OPNAME=all)'),nl,
print(' -cbc_deadlock constraint-based deadlock checking'),nl,
( \+ option_verbose -> true ;
print(' -cbc_deadlock_pred PRED as above but with additional predicate'),nl
),
print(' -cbc_assertions constraint-based static assertion checking'),nl,
print(' -cbc_refinement constraint-based static refinement checking'),nl,
print(' -cbc_sequence S constraint-based search for sequence of operations'),nl,
print(' -strict raise error if model-checking finds counter example'),nl,
print(' or trace checking fails or any error state found'),nl,
print(' -expcterr ERR expect error to occur (ERR=cbc,mc,ltl,...)'),nl,
print(' -animate Nr random animation (max. Nr steps)'),nl,
print(' -animate_all random animation until a deadlock is reached'),nl,
print(' -animate_stats provide feedback which operations are animated or executed'),nl,
print(' -execute Nr execute specification (maximally Nr steps)'),nl,
print(' in contrast to -animate: stops at first operation found, is deterministic,'),nl,
print(' does not store intermediate states and does not use TIME_OUT preference'),nl,
print(' -execute_all execute until a deadlock, direct loop, goal or error is reached'),nl,
print(' -execute_monitor monitor performance of execute'),nl,
print(' -his File write history to File'),nl,
print(' -his_option O additional option when writing a history (show_init,show_states,json,trace_file)'),nl,
print(' -sptxt File save constants and variable values of last discovered state to File'),nl,
print(' -sstxt Dir save constants and variable values of all discovered states to files in Dir'),nl,
print(' -cache Directory automatically save constants to files and avoid recomputation'),nl,
print(' -det_check check if animation steps are deterministic'),nl,
print(' -det_constants only check if SETUP_CONSTANTS step is deterministic'),nl,
( \+ option_verbose -> true ;
print(' -i interactive animation. Only for interactive sessions,'),nl,
print(' the output can arbitrarily change in future versions. '),nl,
print(' Do not build automatic tools using the interactive mode'),nl
),
print(' -repl start interactive read-eval-loop'),nl,
print(' -eval "E" evaluate expression or predicate'),nl,
print(' -eval_file FILE evaluate expression or predicate from file'),nl,
print(' -c print coverage statistics'),nl,
print(' -cc Nr Nr print and check coverage statistics'),nl,
print(' -vacuity_check look for vacuous implications in invariant'),nl,
print(' -cbc_redundant_invariants Nr find redundant invariants, expecting Nr'),nl, % Nr exepcted
print(' -statistics print memory and other statistics at the end'),nl,
print(' -p PREF Val set preference to value'),nl,
print(' -prefs FILE set preferences from Prolog file'),nl,
print(' -pref_group G S set group G of preferences to predefined value set S'),nl,
print(' -card GS Val set cardinality (aka scope) of B deferred set'),nl,
print(' -goal "PRED" set GOAL predicate for model checker'),nl,
print(' -check_goal check GOAL (after -mc, -t, or -animate)'),nl,
print(' -scope "PRED" set scope predicate for model checker'),nl,
print(' (only states satsifying this predicate will be examined)'),nl,
print(' -property "PRED" virtually add predicate to PROPERTIES'),nl,
print(' -s Port start socket server on given port'),nl,
print(' -ss start socket server on port 9000'),nl,
print(' -sf start socket server on some free port'),nl,
print(' -l LogFile log activities in LogFile'),nl,
print(' -ll log activities in /tmp/prob_cli_debug.log'),nl,
print(' -logxml LogFile log activities in XML LogFile'),nl,
print(' -logxml_write_ids P write variables/constants starting with P to XML LogFile'),nl,
print(' -pp FILE pretty-print internal representation to file (or user_output)'), nl,
print(' -ppf FILE like -pp, but force printing of all type infos'),nl,
print(' -ppAB FILE like -ppf, but make output readable by Atelier-B'),nl,
print(' -ppB FILE pretty-print Event-B model to file in valid B syntax'),nl,
print(' -v verbose'),nl,
( \+ option_verbose -> true ;
print(' -vv very verbose'),nl
),
print(' -mc_with_tlc model check using TLC (see also TLC_WORKERS preference)'),nl,
print(' -mc_with_lts_sym model check using LTSmin (symbolic)'),nl,
print(' -mc_with_lts_seq model check using LTSmin (sequential)'),nl,
( \+ option_verbose -> true ;
print(' -ltsmin_option OPT set option for LTSmin (e.g, por)'),nl,
print(' -ltsmin_ltl_output FILE set output file for LTSMin'),nl,
print(' -symbolic_model_check ALGO ALGO is bmc, kinduction, ctigar, ic3'),nl,
print(' -enabling_analysis_csv FILE perform operation enabling analysis'),nl,
print(' -feasibility_analysis perform operation feasibility analysis'),nl,
print(' -feasibility_analysis_csv FILE write feasibility result to file'),nl,
print(' -read_write_matrix show read/write matrix for operations'),nl
),
print(' -version print version information (-svers for short info)'),nl,
print(' -check_java_version check that Java version compatible with ProB parser'),nl,
print(' -assertions check ASSERTIONS'),nl,
print(' -main_assertions check ASSERTIONS from main file only'),nl,
print(' -properties check PROPERTIES'),nl,
print(' -cache Dir use directory "Dir" to cache constants and variables'),nl,
print(' -ltlfile F check LTL formulas in file F'),nl,
print(' -ltlassertions check LTL assertions (in DEFINITIONS)'),nl,
print(' -ltllimit L explore at most L states when model-checking LTL or CTL'),nl,
print(' -ltlformula \"F\" check the LTL formula F'),nl,
print(' -ctlformula \"F\" check the CTL formula F'),nl,
print(' -save File save state space for later refinement check'),nl,
print(' -refchk File refinement check against previous saved state space'),nl,
print(' -mcm_tests Depth MaxStates EndPredicate File'),nl,
print(' generate test cases with maximum length Depth, explore'),nl,
print(' maximally MaxStates, the last state satisfies EndPredicate'),nl,
print(' and the test cases are written to File'),nl,
print(' -mcm_cover Operation'),nl,
print(' when generating MCM test cases, Operation should be covered'),nl,
print(' -cbc_tests Depth EndPredicate File'),nl,
print(' generate test cases by constraint solving with maximum'),nl,
print(' length Depth, the last state satisfies EndPredicate'),nl,
print(' and the test cases are written to File'),nl,
print(' -cbc_cover Operation'),nl,
print(' when generating CBC test cases, Operation should be covered'),nl,
% print(' -cbc_cover_all try and cover all operations'),nl, % is now default if no cbc_cover provided
print(' -test_description File'),nl,
print(' read information for test generation from File'),nl,
print(' -dot CMD File write a graph to a dot file, with CMD being one of:'),nl,
(is_dot_command(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -dotexpr CMD Expr File write a graph for Expr to a dot file, with CMD:'),nl,
(is_dot_command_for_expr(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -puml CMD File write a graph to a plantuml file, with CMD being one of:'),nl,
(is_plantuml_command(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -pumlexpr CMD Expr File write a graph for Expr to a plantuml file, with CMD:'),nl,
(is_plantuml_command_for_expr(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -csv CMD File write a table to a CSV file, with CMD being one of:'),nl,
(is_table_command(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -csvexpr CMD Expr File write a table for Expr to a CSV file, with CMD:'),nl,
(is_table_command_for_expr(Cmd),command_description(Cmd,_,Desc),
format(' ~w : ~w~n',[Cmd,Desc]),fail
; true),
print(' -dot_output Path generate dot files for false assertions/properties'),nl,
print(' -dot_all also generate dot files for true assertions/properties'),nl,
print(' -rule_report generate HTML validation report for rules machines (.rmch)'),nl,
print(' -csvhist E File evaluate expression over history and generate CSV file.'),nl,
print(' -load_state File load state of ProB from a saved state space (generated by ProB Tcl/Tk or -save_state)'),nl,
% For Eclipse Version only
%% print(' -parsercp CP class path of the B Parser, this has to be a valid Java class path'),nl,
%% print(' -cspm load CSP-M .csp file rather than B Machine .mch/.ref/.imp File'),nl,
%% print(' -csp load CSP-M .pl file rather than B Machine File'),nl,
/* Options -cspref, -cspdeadlock, -cspdeterministic, and -csplivelock are deprecated, should be excluded in favor of -csp_assertion */
print(' -cspref Spec [m= Impl File'),nl,
print(' checks a refinement statement,'),nl,
print(' where Spec and Impl are processes from File, and \'m\' the type of the refinement:'),nl,
print(' \'T\' for traces, \'F\' for failures, or \'FD\' for failures-divergences.'),nl,
print(' -cspdeadlock P m File'),nl,
print(' checks a process for deadlock,'),nl,
print(' where \'P\' is a process from File, and \'m\' the type of the model:'),nl,
print(' \'F\' for failures and \'FD\' for failures-divergences.'),nl,
print(' -cspdeterministic P m File'),nl,
print(' checks a process for determinism,'),nl,
print(' where \'P\' is a process from File, and \'m\' the type of the model:'),nl,
print(' \'F\' for failures and \'FD\' for failures-divergences.'),nl,
print(' -csplivelock P File'),nl,
print(' checks a process for divergence,'),nl,
print(' where \'P\' is a process from File.'),nl,
/* Options -cspref, -cspdeadlock, -cspdeterministic, and -csplivelock are deprecated, should be excluded in favor of -csp_assertion */
print(' -csp_assertion \"A\" File'),nl,
print(' checks the CSP assertion \'A\' on file \'File\''),nl,
print(' -csp_eval "E" evaluate CSP-M expression.'),nl,
print(' -csp-guide File CSP||B: Use the CSP File to control the B machine'),nl,
print(' '),nl,
( \+ option_verbose -> true
;
print(' -test_mode set random seed to the Prolog\'s current random state'),nl,
print(' -rc runtime checking of types/pre-/post-conditions'),nl,
print(' -state_trace File read a file of B predicates (one per line) and try find a matching trace.'),nl
),
print(' FILE extensions are: '),nl,
print(' .mch for B abstract machines'),nl,
print(' .ref for B refinement machines'),nl,
print(' .imp for B implementation machines'),nl,
print(' .sys for Event-B abstract machines'),nl,
print(' .rmch for B Rule DSL machines'),nl,
print(' .csp, .cspm for CSP-M files, same format as FDR'),nl,
print(' .eventb for Event-B packages exported from Rodin ProB Plugin'),nl,
print(' .tex, .zed for Z models'),nl,
print(' .tla for TLA+ models'),nl,
print(' .als for Alloy models'),nl,
print(' .P for Prolog XTL models'),nl,
( option_verbose ->
print(' Preferences PREF are: '),nl,
print_eclipse_prefs
;
print(' Use --help -v to print available preferences PREF'),nl
),
print(' Set NO_COLOR environment variable to disable terminal colors'),nl,
print(' More info at: https://prob.hhu.de/w/index.php/ProB_Cli'),nl,
nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: print_eclipse_prefs |
Module: foo_error |
Name: option_verbose/0 |
Module: prob_cli |
Name: ->/3 |
|
Name: true |
|
Name: not/1 |
|
Name: fail |
|
Name: format/2 |
|
Name: command_description/3 |
Module: foo_error |
Name: is_table_command_for_expr/1 |
Module: foo_error |
Name: is_table_command/1 |
Module: foo_error |
Name: is_plantuml_command_for_expr/1 |
Module: foo_error |
Name: is_plantuml_command/1 |
Module: foo_error |
Name: is_dot_command_for_expr/1 |
Module: foo_error |
Name: is_dot_command/1 |
Module: foo_error |
Name: print_version/1 |
Module: prob_cli |
Called:
Name: cli_show_help/2 |
Module: prob_cli |
print_host_version(Stream) :-
host_platform(HP),
host_processor(Proc),
(platform_is_64_bit -> Bits=64 ; Bits=32),
format(Stream,' Host Processor: ~w (~w bits)~n Host Operating System: ~w~n',[Proc,Bits,HP]).
Calls:
Name: format/3 |
|
Name: =/2 |
|
Name: platform_is_64_bit/0 |
Module: tools_platform |
Name: ->/3 |
|
Name: host_processor/1 |
Module: tools_platform |
Name: host_platform/1 |
Module: tools_platform |
Called:
Name: print_full_version/2 |
Module: prob_cli |
Name: print_version/2 |
Module: prob_cli |
print_individual_file(with_sha,File) :- Span = machine_info,
raw_sha_hash_file(File,Term,Span),
get_hex_bytes(Term,SHAHexCodes),
format(' ~w, ~s~n',[File,SHAHexCodes]).
print_individual_file(_,File) :- format(' ~w~n',[File]).
Calls:
Name: format/2 |
|
Name: get_hex_bytes/2 |
Module: tools_strings |
Name: raw_sha_hash_file/3 |
Module: probhash/probhash |
Name: =/2 |
print_individual_file_infos_csv(Stream,FileMode) :-
findall(C,individual_file_infos(_,C,_),All), sort(All,AllContexts),
member(Context,AllContexts), % iterate over all Contexts
(individual_file_infos(_,Context,HInfos) -> true), % pick one as header
(FileMode=append
-> true % do not print header line, we append to an existing table
; format(Stream,'~nFILE,ANALYSIS,',[]),
print_titles(HInfos,Stream),nl(Stream)
),
% TO DO: ensure Infos and SHInfos identical, else add 0 for missing categories
(merged_individual_file_infos(File,Context,Infos)
-> true % just print averages
; individual_file_infos(File,Context,Infos)
),
gen_relative_path_to_cur_dir(File,RelFile),
format(Stream,'~w,~w,',[RelFile,Context]),
print_vals(Infos,HInfos,Stream),nl(Stream),
fail.
print_individual_file_infos_csv(_,_).
Calls:
Name: fail |
|
Name: nl/1 |
|
Name: print_vals/3 |
Module: prob_cli |
Name: format/3 |
|
Module: tools | |
Name: individual_file_infos/3 |
dynamic predicate |
Name: true |
|
Name: merged_individual_file_infos/3 |
dynamic predicate |
Name: ->/3 |
|
Name: print_titles/2 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/2 |
|
Name: member/2 |
|
Name: sort/2 |
|
Name: findall/3 |
Called:
Name: pr_acc_infos_aux/3 |
Module: prob_cli |
print_java_version(Stream) :-
(get_java_command_path(JavaPath)
-> format(Stream,' Java Runtime: ~p~N', [JavaPath]),
(get_java_fullversion(JavaVersion)
-> format(Stream,' Java Version: ~s~N', [JavaVersion])
; format(Stream,' Java Version: *** not available ***~N',[])
),
(get_parser_version(ParserVersion)
-> format(Stream,' Java Parser: ~p~N', [ParserVersion])
; format(Stream,' Java Parser: *** not available ***~N',[])
)
; format(Stream,' Java Runtime: *** not available ***~N',[])
).
Calls:
Name: format/3 |
|
Name: get_parser_version/1 |
Module: parsercall |
Name: ->/3 |
|
Name: get_java_fullversion/1 |
Module: parsercall |
Name: get_java_command_path/1 |
Module: parsercall |
Called:
Name: print_version/2 |
Module: prob_cli |
Name: print_full_version/2 |
Module: prob_cli |
print_keynr(Key/Nr) :- format(' ~w : ~w~n',[Key,Nr]).
Calls:
Name: format/2 |
print_list(all) :- print('** all **').
print_list(list(L)) :- print_list(L). % possibly not used
print_list([]) :- print('** none **').
print_list([H|T]) :- length([H|T],Len), format('(~w) ',[Len]),
print(H),print(' '),print_list2(T).
Calls:
Name: print_list2/1 |
Module: prob_cli |
Name: print/1 |
|
Name: format/2 |
|
Name: length/2 |
|
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Called:
Name: print_uncovered/2 |
Module: prob_cli |
Name: process_ltsmin_result/2 |
Module: prob_cli |
Module: prob_cli | |
Name: run_probcli3/2 |
Module: prob_cli |
Module: prob_cli |
print_list2([]).
print_list2([H|T]) :- print(H),print(' '),print_list2(T).
Calls:
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: print/1 |
Called:
Name: print_list/1 |
Module: prob_cli |
print_logo :-
% should be improved considerably; doesn't look very nice yet on macOS terminal due to line separation
% â–„â–„â–„â–„ â–„â–„â–„â–„
% â–ˆ â–ˆ â–ˆ â–ˆ
% █▀▀▀ ▄ ▄▄▄ █▀▀▀▄
% █ █ █▄█ █▄▄▄▀
format_with_colour_nl(user_output,[blue],' ~s',[[9604,9604,9604,9604,32,32,32,32,32,32,32,9604,9604,9604,9604]]),
format_with_colour_nl(user_output,[blue],' ~s',[[9608,32,32,32,9608,32,32,32,32,32,32,9608,32,32,32,9608]]),
format_with_colour_nl(user_output,[blue],' ~s',[[9608,9600,9600,9600,32,9604,32,9604,9604,9604,32,9608,9600,9600,9600,9604]]),
format_with_colour_nl(user_output,[blue],' ~s',[[9608,32,32,32,9608,32,32,9608,9604,9608,32,9608,9604,9604,9604,9600]]).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
print_max_walltime :- (max_walltime(Action,Nr,WT),option_verbose
-> format('% Maximum walltime ~w ms at step ~w for ~w.~n',[WT,Nr,Action]) ; true).
Calls:
Name: true |
|
Name: format/2 |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: max_walltime/3 |
dynamic predicate |
Name: ->/3 |
Called:
Name: cli_execute_from/5 |
Module: prob_cli |
print_memory_statistics(Stream) :-
garbage_collect,
write(Stream,'ProB memory used: '),
print_memory_used_wo_gc(Stream), nl(Stream), flush_output(Stream).
Calls:
Name: flush_output/1 |
|
Name: nl/1 |
|
Module: tools | |
Name: write/2 |
|
Name: garbage_collect |
Called:
Name: cli_print_statistics/1 |
Module: prob_cli |
Name: pr_acc_infos_aux/3 |
Module: prob_cli |
print_mode_info :- animation_mode(M), (animation_minor_mode(MM) -> true ; MM=''),
format('Animation Mode = ~w [~w]~n',[M,MM]).
Calls:
Name: format/2 |
|
Name: =/2 |
|
Name: true |
|
Name: animation_minor_mode/1 |
Module: foo_error |
Name: ->/3 |
|
Name: animation_mode/1 |
Module: foo_error |
Called:
Name: print_current_state/0 |
Module: prob_cli |
print_modules(Stream) :- findall(M,current_module(M),Ms), sort(Ms,SMs),
format(Stream,' PROLOG MODULES: ~w~N',[SMs]).
Calls:
Name: format/3 |
|
Name: sort/2 |
|
Name: findall/3 |
Called:
Name: print_full_version/2 |
Module: prob_cli |
print_nr_list(List) :- print_nr_list(List,0,1,no_repeats).
Calls:
Name: print_nr_list/4 |
Module: prob_cli |
Called:
Name: model_check_aux/5 |
Module: prob_cli |
print_nr_list([],NM1,_,Repeats) :- !, print_repeats(NM1,Repeats).
print_nr_list([H|T],_,N,repeated(H,SinceN)) :- !, N1 is N+1,
print_nr_list(T,N,N1,repeated(H,SinceN)).
print_nr_list([H|T],NM1,N,Repeats) :- !,
print_repeats(NM1,Repeats),
N1 is N+1,
print_nr_list(T,N,N1,repeated(H,N)).
print_nr_list(X,_,_,_) :- print('### not a list: '), print(X),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: is/2 |
|
Name: print_repeats/2 |
Module: prob_cli |
Name: ! |
Called:
Name: model_check_aux/5 |
Module: prob_cli |
print_options :- print('CLI OPTIONS: '),nl,
option(Option), print(Option), nl, fail.
print_options :- nl.
Calls:
Name: nl |
|
Name: fail |
|
Name: print/1 |
|
Name: option/1 |
dynamic predicate |
Called:
Name: perform_random_step/4 |
Module: prob_cli |
Name: animate_machine2/0 |
Module: prob_cli |
print_options([],_).
print_options([H|T],N) :-
print(' '), print(N), print(':'), print(H),nl,
N1 is N+1,
print_options(T,N1).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: is/2 |
|
Name: nl |
|
Name: print/1 |
Called:
Name: perform_random_step/4 |
Module: prob_cli |
Name: animate_machine2/0 |
Module: prob_cli |
print_probcli_error_non_strict(parse_machine_predicate_error,_) :-
!. % have already been reported
print_probcli_error_non_strict(Type,ErrOrWarning) :-
(ErrOrWarning=warning -> print_error('*** warning occurred ***')
; print_error('*** error occurred ***')),
print_error(Type).
Calls:
Name: print_error/1 |
Module: tools_printing |
Name: =/2 |
|
Name: ->/3 |
|
Name: ! |
Called:
Name: error_occurred/4 |
Module: prob_cli |
print_probcli_version(Stream) :-
full_version_str(VersStr),
revision(Rev), lastchangeddate(LCD),
current_prolog_flag(dialect, Dialect),
(Dialect= swi, current_prolog_flag(version_git,PV) -> true
; current_prolog_flag(version,PV)
),
format(Stream,' VERSION ~w (~p)~N ~p~N Prolog (~w): ~p~N',
[VersStr,Rev,LCD,Dialect, PV]).
Calls:
Name: format/3 |
|
Name: current_prolog_flag/2 |
|
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: lastchangeddate/1 |
Module: foo_error |
Name: revision/1 |
Module: foo_error |
Name: full_version_str/1 |
Module: foo_error |
Called:
Name: print_full_version/2 |
Module: prob_cli |
print_prolog_flags(Stream) :-
relevant_prolog_flags(Flags),
format(Stream,' PROLOG FLAGS: ~w~N',[Flags]).
Calls:
Name: format/3 |
|
Name: relevant_prolog_flags/1 |
Module: compile_time_flags |
Called:
Name: print_full_version/2 |
Module: prob_cli |
print_property_partitions :- print('PARTITIONS OF PROPERTIES'),nl,
b_get_properties_from_machine(Properties),
predicate_components(Properties,Comp),
length(Comp,Len), print(Len), print(' components found in PROPERTIES'),nl,
nth1(Nr,Comp,component(P,Vars)),
format('~n& // Component ~w/~w over identifiers ~w~n',[Nr,Len,Vars]),
translate:print_bexpr(P),nl,fail.
print_property_partitions :- nl, print(' ============== '),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: fail |
|
Name: print_bexpr/1 |
Module: translate |
Name: format/2 |
|
Name: nth1/3 |
Module: foo_error |
Name: length/2 |
|
Name: predicate_components/2 |
Module: bsyntaxtree |
Module: bmachine |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
print_repeats(N,repeated(H,N)) :- !,
format(' ~w: ~w~n',[N,H]).
print_repeats(N,repeated(H,Since)) :- !, Repeats is 1+N-Since,
format(' ~w - ~w: ~w (~w repetitions)~n',[Since,N,H,Repeats]).
print_repeats(_,_).
Calls:
Name: format/2 |
|
Name: is/2 |
|
Name: ! |
Called:
Name: print_nr_list/4 |
Module: prob_cli |
print_repl_prompt :- reset_terminal_colour(user_output), write('>>> ').
Calls:
Name: write/1 |
|
Name: reset_terminal_colour/1 |
Module: tools_printing |
Called:
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: top_level_eval1/0 |
Module: prob_cli |
Name: eval_line/1 |
Module: prob_cli |
print_repl_prompt(P) :- reset_terminal_colour(user_output), write(P).
Calls:
Name: write/1 |
|
Name: reset_terminal_colour/1 |
Module: tools_printing |
Called:
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: top_level_eval1/0 |
Module: prob_cli |
Name: eval_line/1 |
Module: prob_cli |
print_repl_prompt_s(_) :- option(silent),!.
print_repl_prompt_s(P) :- print_repl_prompt(P).
Calls:
Name: print_repl_prompt/1 |
Module: prob_cli |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cbc_sequence/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cbc_refinement/0 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
Name: ltl_check_file/1 |
Module: prob_cli |
Name: reload_mainfile/0 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Name: cbc_assertions/2 |
Module: prob_cli |
print_set(GS) :- print(GS), \+ is_b_global_constant(GS,_,_),!, print(' ').
print_set(GS) :- print(' = {'), is_b_global_constant(GS,_,Cst), print(Cst), print(' '),fail.
print_set(_) :- print(' } ').
Calls:
Name: print/1 |
|
Name: fail |
|
Name: is_b_global_constant/3 |
Module: b_global_sets |
Name: ! |
|
Name: not/1 |
Called:
Name: print_sets/0 |
Module: prob_cli |
print_sets :- print('Available SETS: '), b_global_set(GS), print_set(GS),fail.
print_sets :- nl.
Calls:
Name: nl |
|
Name: fail |
|
Name: print_set/1 |
Module: prob_cli |
Name: b_global_set/1 |
Module: b_global_sets |
Name: print/1 |
Called:
Name: browse_machine/1 |
Module: prob_cli |
print_short_version(Stream) :-
version(V1,V2,V3,Suffix),revision(Rev),
format(Stream,'VERSION ~p.~p.~p-~p (~p)~N',[V1,V2,V3,Suffix,Rev]).
Calls:
Name: format/3 |
|
Name: revision/1 |
Module: foo_error |
Name: version/4 |
Module: foo_error |
Called:
Name: print_version/2 |
Module: prob_cli |
print_state_silent(_) :- option(silent),!.
print_state_silent(CurState) :- (option_verbose;\+ b_machine_has_constants),!,
translate:print_bstate_limited(CurState,1000,-1),nl.
print_state_silent(CurState) :- remove_constants(CurState,VarState),
% only print variables
format('VARIABLES (use -v to see constants or -silent to suppress output):~n',[]),
translate:print_bstate_limited(VarState,1000,-1),nl.
Calls:
Name: nl |
|
Name: print_bstate_limited/3 |
Module: translate |
Name: format/2 |
|
Name: remove_constants/2 |
Module: prob_cli |
Name: ! |
|
Module: bmachine | |
Name: not/1 |
|
Name: option_verbose/0 |
Module: prob_cli |
Name: option/1 |
dynamic predicate |
Called:
Name: check_for_errors/2 |
Module: prob_cli |
Name: cli_execute_aux/7 |
Module: prob_cli |
print_titles([],_).
print_titles([H|T],Stream) :- get_info(H,FF,_), write(Stream,FF),
(T=[] -> true ; write(Stream,','), print_titles(T,Stream)).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: write/2 |
|
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: get_info/3 |
Module: prob_cli |
Called:
Module: prob_cli |
print_total_probcli_timer :-
statistics(runtime,[T2,_]),
statistics(walltime,[WT2,_]),
format('Since start of probcli: ~w ms walltime (~w ms runtime)~n',[WT2,T2]).
Calls:
Name: format/2 |
|
Name: statistics/2 |
print_uncovered(Msg,Uncovered) :-
include(enabling_analysis:infeasible_operation_cache,Uncovered,Infeasible),
(Infeasible=[]
-> format('~wuncovered events: ',[Msg]),print_list(Uncovered),nl
; format('~winfeasible uncovered events: ',[Msg]),print_list(Infeasible),nl,
exclude(enabling_analysis:infeasible_operation_cache,Uncovered,Feasible),
format('~wuncovered events: ',[Msg]),print_list(Feasible),nl
).
Calls:
Name: nl |
|
Name: print_list/1 |
Module: prob_cli |
Name: format/2 |
|
Name: exclude/3 |
Module: foo_error |
Name: =/2 |
|
Name: ->/3 |
|
Name: include/3 |
Module: foo_error |
print_vals(_,[],_) :- !.
print_vals([H|T],[Header|HT],Stream) :- get_info(Header,Title,_),
get_info(H,Title,Nr), !,
write(Stream,Nr),
(T=[] -> true ; write(Stream,','), print_vals(T,HT,Stream)).
print_vals(Vals,[_|HT],Stream) :- % a value is missing for this file
write(Stream,'-'),
(HT=[] -> true ; write(Stream,','), print_vals(Vals,HT,Stream)).
Calls:
Name: RECURSIVE_CALL/3 |
Module: prob_cli |
Name: write/2 |
|
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: ! |
|
Name: get_info/3 |
Module: prob_cli |
Called:
Module: prob_cli |
print_version(Kind) :- print_version(Kind,user_output).
Calls:
Name: print_version/2 |
Module: prob_cli |
Called:
Name: print_version/1 |
Module: prob_cli |
Name: pr_acc_infos_aux/3 |
Module: prob_cli |
print_version(short,Stream) :- print_short_version(Stream).
print_version(cpp,Stream) :- print_cpp_version(Stream).
print_version(java,Stream) :- print_java_version(Stream).
print_version(full,Stream) :- print_full_version(Stream).
print_version(full_verbose,Stream) :- print_full_version(Stream,verbose).
print_version(host,Stream) :- print_host_version(Stream).
print_version(lib,Stream) :- check_lib_contents(Stream,verbose).
Calls:
Name: check_lib_contents/2 |
Module: pathes_lib |
Name: print_host_version/1 |
Module: prob_cli |
Name: print_full_version/2 |
Module: prob_cli |
Name: print_full_version/1 |
Module: prob_cli |
Name: print_java_version/1 |
Module: prob_cli |
Name: print_cpp_version/1 |
Module: prob_cli |
Name: print_short_version/1 |
Module: prob_cli |
Called:
Name: print_version/1 |
Module: prob_cli |
Name: pr_acc_infos_aux/3 |
Module: prob_cli |
prnt(_,[]).
prnt(N,[H|T]) :- format(' ~w : ~w~n',[N,H]), N1 is N+1, prnt(N1,T).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: is/2 |
|
Name: format/2 |
Called:
Module: prob_cli |
prob_trimcore :- (option_verbose ; option(release_java_parser)),!,prob_trimcore_verbose.
prob_trimcore :- prob_trimcore_silent.
Calls:
Name: prob_trimcore_silent/0 |
Module: prob_cli |
Name: prob_trimcore_verbose/0 |
Module: prob_cli |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Name: option_verbose/0 |
Module: prob_cli |
Called:
Name: trimcore_if_useful/1 |
Module: prob_cli |
prob_trimcore_silent :-
garbage_collect, % is important, otherwise trimming may achieve very little
trimcore.
Calls:
Name: trimcore |
|
Name: garbage_collect |
Called:
Name: prob_trimcore_verbose/0 |
Module: prob_cli |
Name: prob_trimcore/0 |
Module: prob_cli |
prob_trimcore_verbose :-
print('Memory used before trimming: '),print_memory_used_wo_gc,flush_output, nl_time,
prob_trimcore_silent,
print('Memory used after trimming : '),print_memory_used_wo_gc,flush_output, nl_time.
Calls:
Name: nl_time |
Module: foo_error |
Name: flush_output |
|
Module: tools | |
Name: print/1 |
|
Name: prob_trimcore_silent/0 |
Module: prob_cli |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
Name: prob_trimcore/0 |
Module: prob_cli |
probcli_add_light_warning(Msg,Term) :- option(strict_raise_error),!,
add_warning(probcli,Msg,Term). % does not write on user_error
probcli_add_light_warning(Msg,Term) :- add_message(probcli,Msg,Term).
Calls:
Name: add_message/3 |
Module: foo_error |
Name: add_warning/3 |
Module: foo_error |
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: set_pref/2 |
Module: prob_cli |
probcli_startup :-
%print_total_probcli_timer,
startup_prob, % % startup_prob will already call init_preferences
%myheap_init,
initialise_cli.
Calls:
Name: initialise_cli/0 |
Module: prob_cli |
Name: startup_prob/0 |
Module: prob_startup |
Called:
Name: run_probcli2/1 |
Module: prob_cli |
process_cbc_assertion_result(time_out,_) :- !,
write_result_to_file(no_counterexample_found('"TIME_OUT"')),
print_red('*** TIME_OUT occurred ***'),nl,
error_occurred(cbc_assertions_time_out).
process_cbc_assertion_result(no_counterexample_exists(Constants,TotPredicate,OtherInfo),AllowEnumWarning) :- !,
print_green('No counter-example to ASSERTION exists '),(OtherInfo=[] -> true ; print(OtherInfo)),nl,
(unfixed_typed_id_in_list(TID,CType,Constants) % TO DO: look only at component
-> write_deferred_set_used(AllowEnumWarning),
get_texpr_id(TID,CID),pretty_type(CType,CTypeS),
format('Warning: Some constants use deferred sets (e.g., ~w:~w) which have only been checked for a single cardinality!~n',[CID,CTypeS])
; predicate_uses_unfixed_deferred_set(TotPredicate,CType)
-> write_deferred_set_used(AllowEnumWarning),pretty_type(CType,CTypeS),
format('Warning: Some quantified variables use deferred sets (e.g., ~w) which have only been checked for a single cardinality!~n',[CTypeS]) % happens for tests 1173, 1174
; write_result_to_file(no_counterexample_exists)
%,print('Computing unsat core: '),nl,unsat_cores:unsat_core(TotPredicate,Core),print('CORE: '),translate:print_bexpr(Core),nl
). % WE HAVE A PROOF
process_cbc_assertion_result(no_counterexample_found,AllowEnumWarning) :- !,
write_result_to_file(no_counterexample_found('"Enumeration Warning"')),
print('No counter-example for ASSERTION found (*enumeration warning occured*)'),nl,
(AllowEnumWarning=true -> true ; error_occurred(cbc_assertions_enumeration_warning)).
process_cbc_assertion_result(counterexample_found,_) :- !,
write_result_to_file(counterexample_found),
print_red('*** Counter-example for ASSERTION found ***'),nl,
error_occurred(cbc_assertions),
(silent_mode(on) -> true
; print('*** STATE = '),nl,
current_b_expression(DBState), translate:print_bstate(DBState),nl,
print('*** END ASSERTION counter-example STATE '),nl
),
(get_dot_file('cbc_assertions',DFile) -> generate_dot_from_assertions(DFile) ; true).
process_cbc_assertion_result(Res,A) :-
write_result_to_file(Res),
add_internal_error('Unknown: ',process_cbc_assertion_result(Res,A)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: write_result_to_file/1 |
Module: prob_cli |
Name: true |
|
Name: generate_dot_from_assertions/1 |
Module: foo_error |
Name: get_dot_file/2 |
Module: prob_cli |
Name: ->/3 |
|
Name: nl |
|
Name: print/1 |
|
Name: print_bstate/1 |
Module: translate |
Name: current_b_expression/1 |
Module: foo_error |
Name: silent_mode/1 |
Module: foo_error |
Name: error_occurred/1 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Name: ! |
|
Name: =/2 |
|
Name: format/2 |
|
Name: pretty_type/2 |
Module: translate |
Module: prob_cli | |
Module: solver_interface | |
Name: get_texpr_id/2 |
Module: bsyntaxtree |
Module: solver_interface | |
Name: print_green/1 |
Module: tools_printing |
Called:
Name: cbc_assertions/2 |
Module: prob_cli |
process_exception(halt(A),_) :- !, throw(halt(A)).
process_exception('$aborted',_) :- !, throw('$aborted'). % thrown by SWI-Prolog on abort by user
process_exception(user_interrupt_signal,Context) :- !,
%add_error(probcli,'probcli interrupted by user (CTRL-C)').
statistics(walltime,[WStart,_]),
format_with_colour_nl(user_error,[red],'~nprobcli interrupted by user (CTRL-C), total walltime ~w ms',[WStart]),
(member(test_runner,Context)
-> throw(user_interrupt_signal) % will be caught by test_runner
; error_occurred_with_msg(user_interrupt_signal,'probcli interrupted by user (CTRL-C)')
).
process_exception(Exc,_) :-
(translate_error_term(Exc,S)
-> format_error_with_nl('Uncaught exception in probcli: ~w',[S])
; true),
error_occurred(internal_error(exception(Exc))),fail.
Calls:
Name: fail |
|
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: translate_error_term/2 |
Module: translate |
Name: ->/3 |
|
Module: prob_cli | |
Name: throw/1 |
|
Name: member/2 |
|
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: statistics/2 |
|
Name: ! |
process_ltsmin_result(ltsmin_model_checking_ok,[model_check_ok-1]) :-
print_green('LTSMin found no counter example\n').
process_ltsmin_result(ltsmin_model_checking_aborted,[model_check_aborted-1]) :-
add_warning(ltsmin_model_checking_aborted,'LTSMin was aborted (e.g., by CTRL-C)').
process_ltsmin_result(ltsmin_counter_example_found(CsvFile),[model_check_counter_example-1]) :-
add_error(ltsmin_counter_example_found,'LTSMin found a counter example, written to:',CsvFile),
(option(silent) -> true
; csv_to_trace(CsvFile,_States,Transitions) ->
print('*** TRACE: '),nl,print_list(Transitions) % ,print(_States),nl
; add_error(ltsmin,'Could not extract trace information from LTSmin file: ',CsvFile)
).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: print_list/1 |
Module: prob_cli |
Name: nl |
|
Name: print/1 |
|
Name: csv_to_trace/3 |
Module: ltsmin/ltsmin_trace |
Name: ->/3 |
|
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: add_warning/2 |
Module: foo_error |
Name: print_green/1 |
Module: tools_printing |
Called:
Module: prob_cli |
profiling_on :- set_prolog_flag(profiling,on), print('% PROFILING ON'),nl.
Calls:
Name: nl |
|
Name: print/1 |
|
Name: set_prolog_flag/2 |
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
recognised_cli_option(X,Opt,Args,Condition) :- normalise_option_atom(X,RX),
recognised_option(RX,Opt,Args,Condition).
Calls:
Name: recognised_option/4 |
Module: prob_cli |
Name: normalise_option_atom/2 |
Module: prob_cli |
recognised_option('-dot_all',dot_generate_for_all_formulas). % generate dot also for true formulas
recognised_option('-animate_all',cli_random_animate(2147483647,false)).
recognised_option('-execute_all',execute(2147483647,false,current_state(1))).
recognised_option('-execute_all_inits',execute(2147483647,false,from_all_initial_states)).
recognised_option('-animate_stats',animate_stats).
recognised_option('-execute_monitor',execute_monitoring).
recognised_option('-check_goal',check_goal).
recognised_option('-ltlassertions',ltl_assertions).
recognised_option('-assertions',cli_check_assertions(all,[false/0,unknown/0])).
recognised_option('-main_assertions',cli_check_assertions(main,[false/0,unknown/0])).
recognised_option('-properties',cli_check_properties).
recognised_option('-properties_core',cli_core_properties(_)). % variable as arg: try various algorithms in order
recognised_option('-properties_core_wd',cli_core_properties(wd_prover)).
recognised_option('-properties_core_z2',cli_core_properties(z3_bup(2))).
recognised_option('-properties_core_z3',cli_core_properties(z3_bup(3))).
recognised_option('-selfcheck',selfcheck(_,[])).
recognised_option('-pacheck',pa_check). % predicate analysis for Kodkod
recognised_option('-det_check',det_check). % check if animation is deterministic
recognised_option('-det_constants',det_constants_check). % check if animation for setup_constants is deterministic
recognised_option('-bf',breadth_first).
recognised_option('-breadth',breadth_first).
recognised_option('-df',depth_first).
recognised_option('-depth',depth_first).
recognised_option('-strict',strict_raise_error).
recognised_option('-silent',silent).
recognised_option('-quiet',silent).
recognised_option('-q',silent).
recognised_option('-force_no_silent',force_no_silent). % override provided silent flag; useful for gitlab test debugging
recognised_option('-statistics',cli_print_statistics(full)).
recognised_option('-stats',cli_print_statistics(full)).
recognised_option('-memory_stats',cli_print_statistics(memory)).
recognised_option('-memory_statistics',cli_print_statistics(memory)).
recognised_option('-memory',cli_print_statistics(memory)).
recognised_option('-profile_stats',cli_print_statistics(sicstus_profile)).
recognised_option('-profile_statistics',cli_print_statistics(sicstus_profile)).
recognised_option('-op_cache_profile',cli_print_statistics(op_cache_profile)).
recognised_option('-hit_profile',cli_print_statistics(hit_profile)). % mainly for ProB developers
recognised_option('-reset_profile_statistics',reset_profiler). % mainly for use in REPL
recognised_option('-nodead',no_deadlocks).
recognised_option('-no_dead',no_deadlocks).
recognised_option('-no_deadlocks',no_deadlocks).
recognised_option('-noinv',no_invariant_violations).
recognised_option('-no_inv',no_invariant_violations).
recognised_option('-no_invariant_violations',no_invariant_violations).
recognised_option('-nogoal',no_goal).
recognised_option('-no_goal',no_goal).
recognised_option('-noltl',no_ltl). % just used for TLC at the moment
recognised_option('-no_ltl',no_ltl).
recognised_option('-noass',no_assertion_violations).
recognised_option('-no_ass',no_assertion_violations).
recognised_option('-no_assertion_violations',no_assertion_violations).
recognised_option('-no_state_errors',no_state_errors). % disable checking for general_errors and transition related state_errors
recognised_option('-nocounter',no_counter_examples).
recognised_option('-no_counter_examples',no_counter_examples).
recognised_option('-nocolor',no_color).
recognised_option('-no_color',no_color).
recognised_option('-no_colour',no_color).
recognised_option('-disable_time_out',set_preference_group(time_out,disable_time_out)).
recognised_option('-disable_timeout',set_preference_group(time_out,disable_time_out)).
recognised_option('-i',animate).
recognised_option('-repl',eval_repl([])). % used to be -eval
recognised_option('-c',coverage(false)).
recognised_option('-cs',coverage(just_summary)).
recognised_option('-coverage',coverage(false)).
recognised_option('-coverage_summary',coverage(just_summary)).
recognised_option('-machine_stats',cli_print_machine_info(statistics)).
recognised_option('-machine_statistics',cli_print_machine_info(statistics)).
recognised_option('-machine_files',cli_print_machine_info(files(no_sha))).
recognised_option('-machine_files_sha',cli_print_machine_info(files(with_sha))).
recognised_option('-machine_hash',cli_print_machine_info(hash(_))).
recognised_option('-check_abstract_constants',check_abstract_constants).
recognised_option('-op_cache_stats',check_op_cache([])).
recognised_option('-op_cache_statistics',check_op_cache([])).
recognised_option('-cv',coverage(true)).
recognised_option('-v',verbose).
recognised_option('-vv',very_verbose).
recognised_option('-verbose',verbose).
recognised_option('-debug',verbose).
recognised_option('-verbose_off',verbose_off). % mainly useful in REPL
recognised_option('-voff',verbose_off). % mainly useful in REPL
recognised_option('-very_verbose',very_verbose).
recognised_option('-profiling_on',profiling_on). % Prolog profiling
recognised_option('-profile',cli_print_statistics(prob_profile)). % ProB Operation profiling
recognised_option('-prob_profile',cli_print_statistics(prob_profile)). % ProB Operation profiling
recognised_option('-version',print_version(full)).
recognised_option('-cpp_version',print_version(cpp)).
recognised_option('-V',print_version(full)).
recognised_option('-svers',print_version(short)).
recognised_option('-short_version',print_version(short)).
recognised_option('-check_lib',print_version(lib)).
recognised_option('-check_java_version',check_java_version).
recognised_option('-java_version',print_version(java)).
recognised_option('-release_java_parser',release_java_parser).
recognised_option('-fast_read_prob',fast_read_prob).
recognised_option('-file_info',file_info).
recognised_option('-t',default_trace_check).
recognised_option('-init',initialise).
recognised_option('-initialise',initialise).
recognised_option('-ll',log('/tmp/prob_cli_debug.log',prolog)). % see cli_start_logging
recognised_option('-ss',socket(9000,true)). % standard socket 9000
recognised_option('-sf',socket(_,true)). % free socket
recognised_option('-local_socketserver',socket(_,true)). % do not allow remote socket connections
recognised_option('-remote_socketserver',socket(_,false)). % allow remote socket connections
recognised_option('-help',help).
recognised_option('-h',help).
recognised_option('-rc',runtimechecking).
recognised_option('-test_mode',test_mode).
recognised_option('-check_complete',check_complete).
recognised_option('-check_complete_operation_coverage', check_complete_operation_coverage).
recognised_option('-mc_with_tlc', cli_start_mc_with_tlc).
recognised_option('-mc_with_lts_sym', cli_start_sym_mc_with_lts(symbolic)).
recognised_option('-mc_with_lts_seq', cli_start_sym_mc_with_lts(sequential)).
recognised_option('-core',disprover_options([disprover_option(unsat_core),unsat_core_algorithm/linear])).
recognised_option('-export_po',disprover_options([disprover_option(export_po_as_machine(user_output))])).
recognised_option('-ltsmin',ltsmin).
recognised_option('-trace',prolog_trace). % enter Prolog debugger on development system after starting up ProB
Called:
Name: test_eval1/1 |
Module: test_runner |
Name: recognised_option/4 |
Module: prob_cli |
recognised_option('-prefs',set_prefs_from_file(PREFFILE),[PREFFILE]).
recognised_option('-card',set_card(SET,SCOPE),[SET,SCOPE]).
recognised_option('-argv',set_argv(ARGV),[ARGV]).
recognised_option('-goal',set_goal(GOAL),[GOAL]).
recognised_option('-property',add_additional_property(PRED),[PRED]).
recognised_option('-scope',set_searchscope(GOAL),[GOAL]).
recognised_option('-searchscope',set_searchscope(GOAL),[GOAL]).
recognised_option('-search_scope',set_searchscope(GOAL),[GOAL]).
recognised_option('-eval',eval_string_or_file(string,E,exists,_,norecheck),[E]).
recognised_option('-evalt',eval_string_or_file(string,E,exists,'TRUE',norecheck),[E]).
recognised_option('-evalf',eval_string_or_file(string,E,exists,'FALSE',norecheck),[E]).
recognised_option('-evalt_rc',eval_string_or_file(string,E,exists,'TRUE',recheck(ascii)),[E]).
recognised_option('-evalf_rc',eval_string_or_file(string,E,exists,'FALSE',recheck(ascii)),[E]).
recognised_option('-evalu',eval_string_or_file(string,E,exists,'UNKNOWN',norecheck),[E]).
recognised_option('-evalnwd',eval_string_or_file(string,E,exists,'NOT-WELL-DEFINED',norecheck),[E]).
recognised_option('-parsercp',parsercp(L),[L]). % deprecated
recognised_option('-parserport',parserport(L),[L]).
recognised_option('-expcterr',expect_error(Type),[Type]).
recognised_option('-expecterr',expect_error(Type),[Type]).
recognised_option('-expect',expect_error(Type),[Type]).
recognised_option('-opterr',optional_error(Type),[Type]).
recognised_option('-his_option',history_option(Option),[Option]). % trace_file, json, show_init, show_states
recognised_option('-cache',cache_storage(D),[D]).
recognised_option('-show_cache',show_cache(default),[]).
recognised_option('-show_cache_verbose',show_cache(verbose),[]).
recognised_option('-MAIN',csp_main(ProcessName),[ProcessName]).
recognised_option('-ltlformula',ltl_formula_model_check(Formula,_),[Formula]).
recognised_option('-ltlformulat',ltl_formula_model_check(Formula,true),[Formula]).
recognised_option('-ltlformulaf',ltl_formula_model_check(Formula,false),[Formula]).
recognised_option('-ctlformula',ctl_formula_model_check(Formula,_),[Formula]).
recognised_option('-ctlformulat',ctl_formula_model_check(Formula,true),[Formula]).
recognised_option('-ctlformulaf',ctl_formula_model_check(Formula,false),[Formula]).
recognised_option('-cspref',csp_in_situ_refinement_check(AbsP1,Type,ImplP2),[AbsP1,Type,ImplP2]).
recognised_option('-cspdeadlock',csp_checkAssertion(Proc,Model,'deadlock free'),[Proc,Model]).
recognised_option('-cspdeterministic',csp_checkAssertion(Proc,Model,'deterministic'),[Proc,Model]).
recognised_option('-csplivelock',csp_checkAssertion(Proc,'FD','livelock free'),[Proc]).
recognised_option('-csp_assertion',check_csp_assertion(Assertion),[Assertion]).
recognised_option('-csp_eval', eval_csp_expression(Expr),[Expr]).
recognised_option('-get_csp_assertions_as_string',csp_get_assertions,[]).
recognised_option('-variable_coverage',csv_table_command(variable_coverage,[],[text_output],user_output),[]).
recognised_option('-vacuity_check',vacuity_check,[]).
recognised_option('-wd_check',cli_wd_check(_,_),[]).
recognised_option('-wd_check_all',cli_wd_check(X,X),[]).
recognised_option('-well_definedness_check',cli_wd_check(_,_),[]).
recognised_option('-wd_inv_proof',cli_wd_inv_proof(_,_,_),[]).
recognised_option('-lint',cli_lint,[]). % extended static check (ESC, esc)
recognised_option('-lint_operations',cli_lint(operations),[]).
recognised_option('-lint_variables',cli_lint(variables),[]).
recognised_option('-cbc',constraint_based_check(OpName),[OpName]). % cbc invariant checking
recognised_option('-cbc_invariant',constraint_based_check(OpName),[OpName]).
recognised_option('-cbc_deadlock',cbc_deadlock_check(true),[]).
recognised_option('-cbc_assertions',cbc_assertions(true,[]),[]).
recognised_option('-cbc_main_assertions',cbc_assertions(true,[main_assertions]),[]).
recognised_option('-cbc_assertions_proof',cbc_assertions(false,[]),[]). % do not allow enumeration warnings
recognised_option('-cbc_assertions_tautology_proof',cbc_assertions(false,[tautology_check]),[]). % do not allow enumeration warnings + disregard PROPERTIES, used for Atelier-B proof/disproof; TO DO: also call WD prover
recognised_option('-cbc_assertions_tautology_proof_check',cbc_assertions(false,[tautology_check,contradiction_check]),[]).
recognised_option('-cbc_option',cbc_option(OPT),[OPT]). % should be tautology_check,contradiction_check, unsat_core
recognised_option('-cbc_result_file',cbc_result_file(FILE),[FILE]). % write result to FILE
recognised_option('-cbc_refinement',cbc_refinement,[]).
recognised_option('-cbc_deadlock_pred',cbc_deadlock_check(GoalPred),[GoalPred]).
recognised_option('-cbc_sequence',cbc_sequence(OpSequence,'',single_solution),[OpSequence]).
recognised_option('-cbc_sequence_all',cbc_sequence(OpSequence,'',findall),[OpSequence]).
recognised_option('-cbc_sequence_with_target',cbc_sequence(OpSequence,TargetPredString,single_solution),[OpSequence,TargetPredString]).
recognised_option('-cbc_sequence_with_target_all',cbc_sequence(OpSequence,TargetPredString,findall),[OpSequence,TargetPredString]).
recognised_option('-comment',comment(UserComment),[UserComment]). % not processed by tool, but will be stored in log-file and used by log_analyser
recognised_option('-junit',junit(Dir),[Dir]).
recognised_option('-mcm_cover', mcm_cover(Event),[Event]).
recognised_option('-cbc_cover', cbc_cover(Event),[Event]).
recognised_option('-cbc_cover_match', cbc_cover(match_event(Event)),[Event]). % find events which have Event String occuring somewhere in name
recognised_option('-cbc_cover_all', cbc_cover_all,[]). % is now default if no cbc_cover provided
recognised_option('-cbc_cover_final', cbc_cover_final,[]).
recognised_option('-bmc', cbc_tests(Depth,'#not_invariant',''),[Depth]).
recognised_option('-bdc', cbc_tests(Depth,'#deadlock',''),[Depth]).
recognised_option('-enabling_analysis',enabling_analysis_csv(user_output),[]).
recognised_option('-feasibility_analysis',feasibility_analysis_csv(1000,user_output),[]).
recognised_option('-read_write_matrix',generate_read_write_matrix_csv(user_output),[]).
recognised_option('-scc_trace',check_scc_for_ltl_formula(LtlFormula,SCC),[LtlFormula,SCC]).
recognised_option('-selfcheck_module',selfcheck(M,[]),[M]).
recognised_option('-mc_mode',depth_breadth_first_mode(M),[M]). % can be mixed, hash, heuristic
recognised_option('-assertion',cli_check_assertions(specific(X),[false/0,unknown/0]),[X]).
recognised_option('-cbc_assertion',cbc_assertions(true,[specific(X)]),[X]). % check only a specific assertion
recognised_option('-symbolic_model_check', cli_symbolic_model_check(Algorithm), [Algorithm]).
recognised_option('-ltsmin2',ltsmin2(EndpointPath), [EndpointPath]).
recognised_option('-ltsmin_ltl_output',ltsmin_ltl_output(Path), [Path]).
recognised_option('-ltsmin_option', ltsmin_option(X),[X]).
recognised_option('-machine_hash_check',cli_print_machine_info(hash(X)),[X]).
recognised_option('-install',install_prob_lib(X,[]),[X]).
recognised_option('-install_dry_run',install_prob_lib(X,[dryrun]),[X]).
Called:
Name: test_eval1/1 |
Module: test_runner |
Name: recognised_option/4 |
Module: prob_cli |
recognised_option(X,Opt,[],true) :- recognised_option(X,Opt). % options without arguments
recognised_option(X,Opt,Args,true) :- recognised_option(X,Opt,Args). % options with arguments but no code needed to check arguments
recognised_option('-mc',cli_mc(N,[]),[Arg],prob_cli:mc_ok_arg(Arg,N)).
recognised_option('-bench_model_check',cli_mc(LimitNr,[reset_state_space,repeat(Rep)]),[Arg],tools:arg_is_number(Arg,Rep)) :- max_tagged_integer(LimitNr).
recognised_option('-model_check',cli_mc(LimitNr,[]),[],true) :- max_tagged_integer(LimitNr).
recognised_option('-timeout',timeout(N),[Arg],tools:arg_is_number(Arg,N)). % for model checking, refinement checking and for disprover per PO
recognised_option('-time_out',timeout(N),[Arg],tools:arg_is_number(Arg,N)).
recognised_option('-global_time_out',timeout(N),[Arg],tools:arg_is_number(Arg,N)). % better name, to avoid conflict with -p timeout N which also works
recognised_option('-s',socket(S,true),[Arg],tools:arg_is_number(Arg,S)).
recognised_option('-cc',coverage(N,N2,just_check_stats),[Arg,Arg2],
(arg_is_number_or_wildcard(Arg,N),arg_is_number_or_wildcard(Arg2,N2))).
recognised_option('-csp_guide',add_csp_guide(File),[File],
prob_cli:check_file_arg(File,'csp_guide')).
recognised_option('-prologOut',csp_translate_to_file(PlFile),[PlFile],
prob_cli:check_file_arg(PlFile,'prologOut')).
recognised_option('-load_state',load_state(Filename),[Filename],
prob_cli:check_file_arg(Filename,'load_state')).
recognised_option('-refchk',refinement_check(Filename,trace,100000),[Filename],
prob_cli:check_file_arg(Filename,'refchk')).
recognised_option('-ref_check',refinement_check(Filename,FailuresModel,100000),[Shortcut,Filename],
(prob_cli:check_file_arg(Filename,'ref_check'),
prob_cli:check_failures_mode(Shortcut,FailuresModel))).
recognised_option('-refinement_check',Option,Args,Code) :- recognised_option('-refchk',Option,Args,Code).
recognised_option('-hash',check_statespace_hash(H,_),[Arg],tools:arg_is_number(Arg,H)).
recognised_option('-hash64',check_statespace_hash(H,'64bit'),[Arg],tools:arg_is_number(Arg,H)).
recognised_option('-hash32',check_statespace_hash(H,'32bit'),[Arg],tools:arg_is_number(Arg,H)).
recognised_option('-check_op_cache_stats',
check_op_cache([next_state_calls-H1,inv_check_calls-H2,
operations_cached-H3,invariants_cached-H4]),[Arg1,Arg2,Arg3,Arg4],
(tools:arg_is_number_or_wildcard(Arg1,H1), tools:arg_is_number_or_wildcard(Arg2,H2),
tools:arg_is_number_or_wildcard(Arg3,H3), tools:arg_is_number_or_wildcard(Arg4,H4))).
recognised_option('-ltllimit',ltl_limit(Nr),[Arg], tools:arg_is_number(Arg,Nr)).
recognised_option('-ltlfile',ltl_file(Filename),[Filename],
prob_cli:check_file_arg(Filename,'ltlfile')).
recognised_option('-check_disprover_result',cli_check_disprover_result([true-TNr,false-FNr,unknown-UNr,failure-0]),[T,F,U],
(arg_is_number_or_wildcard(T,TNr),arg_is_number_or_wildcard(F,FNr),arg_is_number_or_wildcard(U,UNr))).
recognised_option('-aa',cli_check_assertions(all,[true/TNr,false/FNr,unknown/UNr]),[T,F,U],
(arg_is_number_or_wildcard(T,TNr),arg_is_number_or_wildcard(F,FNr),arg_is_number_or_wildcard(U,UNr))).
recognised_option('-ma',cli_check_assertions(main,[true/TNr,false/FNr,unknown/UNr]),[T,F,U],
(arg_is_number_or_wildcard(T,TNr),arg_is_number_or_wildcard(F,FNr),arg_is_number_or_wildcard(U,UNr))).
recognised_option('-wd',cli_wd_check(DNr,TNr),[D,T],
(arg_is_number_or_wildcard(T,TNr),arg_is_number_or_wildcard(D,DNr))).
recognised_option('-kodkod_comparision',kodkod_comparision(Nr),[Arg],tools:arg_is_number(Arg,Nr)).
recognised_option('-kodkod_performance',kodkod_performance(File,Nr),[File,Arg],tools:arg_is_number(Arg,Nr)).
recognised_option('-animate',cli_random_animate(N,true),[Steps],tools:arg_is_number(Steps,N)).
recognised_option('-execute',execute(N,true,current_state(1)),[Steps],tools:arg_is_number(Steps,N)).
recognised_option('-execute_repeat',execute(N,true,current_state(R)),[Steps,Rep],
(tools:arg_is_number(Steps,N),tools:arg_is_number(Rep,R))).
recognised_option('-execute_expect_steps',execute_expect_steps(N),[Steps],tools:arg_is_number(Steps,N)).
recognised_option('-logxml_write_vars',logxml_write_ids(variables,Prefix),[Prefix],true).
recognised_option('-logxml_write_ids',logxml_write_ids(all,Prefix),[Prefix],true).
recognised_option('-zmq_master',zmq_master(Identifier),[Identifier], true).
recognised_option('-cbc_tests', cbc_tests(Depth,EndPred,Output),[Depth,EndPred,Output],
prob_cli:check_file_arg(Output,'cbc_tests')).
recognised_option('-mcm_tests', mcm_tests(Depth,MaxStates,EndPred,Output),[Depth,MaxStates,EndPred,Output],
prob_cli:check_file_arg(Output,'mcm_tests')).
recognised_option('-test_description', test_description(File), [File],
prob_cli:check_file_arg(File,'test_description')).
recognised_option('-all_paths', all_deadlocking_paths(File), [File],
prob_cli:check_file_arg(File,'all_paths')).
recognised_option('-dot',dot_command(Category,File,default),[Category,File],
prob_cli:check_file_arg(File,'dot')).
recognised_option('-spdot',dot_command(state_space,File,default),[File], prob_cli:check_file_arg(File,'spdot')). % we keep this : it is shown in Wiki
recognised_option('-dotexpr',dot_command_for_expr(Category,Expr,File,[],default),[Category,Expr,File],
prob_cli:check_file_arg(File,'dotexpr')).
recognised_option('-dot_expr',Opt,Args,Call) :- recognised_option('-dotexpr',Opt,Args,Call).
recognised_option('-puml',plantuml_command(Category,File),[Category,File],
prob_cli:check_file_arg(File,'plantuml')).
recognised_option('-pumlexpr',plantuml_command(Category,File,[Expr]),[Category,Expr,File],
prob_cli:check_file_arg(File,'plantuml')).
recognised_option('-puml_expr',Opt,Args,Call) :- recognised_option('-pumlexpr',Opt,Args,Call).
recognised_option('-csv',csv_table_command(Category,[],[],File),[Category,File],
prob_cli:check_file_arg(File,'csv')).
recognised_option('-csvexpr',csv_table_command(Category,[Expr],[],File),[Category,Expr,File],
prob_cli:check_file_arg(File,'csvexpr')).
recognised_option('-csv_expr',Opt,Args,Call) :- recognised_option('-csvexpr',Opt,Args,Call).
recognised_option('-csv_hist',Opt,Args,Call) :- recognised_option('-csvhist',Opt,Args,Call).
recognised_option('-csvhist',evaluate_expression_over_history_to_csv_file(Expr,File),[Expr,File],
prob_cli:check_file_arg(File,'csvhist')).
recognised_option('-min_max_coverage',csv_table_command(minmax_table,[],[text_output],File),[File],
prob_cli:check_file_arg(File,'min_max_coverage')).
recognised_option('-get_coverage_information',get_coverage_information(File),[File],
prob_cli:check_file_arg(File,'get_coverage_information')).
recognised_option('-read_write_matrix_csv',generate_read_write_matrix_csv(CsvFile),
[CsvFile],
prob_cli:check_file_arg(CsvFile,'read_write_matrix_csv')).
recognised_option('-feasibility_analysis_csv',feasibility_analysis_csv(TimeOut,EnablingCsvFile),
[TimeOut,EnablingCsvFile],
prob_cli:check_file_arg(EnablingCsvFile,'feasibility_analysis_csv')).
recognised_option('-l',log(Log,prolog),[Log],
prob_cli:check_file_arg(Log,'l')).
recognised_option('-log',log(Log,prolog),[Log],
prob_cli:check_file_arg(Log,'log')).
recognised_option('-logxml',log(Log,xml),[Log],
prob_cli:check_file_arg(Log,'logxml')). % see cli_start_logging
recognised_option('-logtlc',logtlc(Log),[Log],
prob_cli:check_file_arg(Log,'logtlc')).
recognised_option('-pp',pretty_print_internal_rep(File,'$auto',needed,ascii),[File],
prob_cli:check_file_arg(File,'pp')).
recognised_option('-ppunicode',pretty_print_internal_rep(File,'$auto',needed,unicode),[File],
prob_cli:check_file_arg(File,'pp')).
recognised_option('-ppf',pretty_print_internal_rep(File,'$auto',all,ascii),[File],
prob_cli:check_file_arg(File,'ppf')).
recognised_option('-ppAB',pretty_print_internal_rep(File,'$auto',all,atelierb),[File],
prob_cli:check_file_arg(File,'ppAB')).
recognised_option('-pp_with_name',pretty_print_internal_rep(File,MachName,all,ascii),[MachName,File],
prob_cli:check_file_arg(File,'pp_with_name')). % provide explicit machine name
recognised_option('-ppB',pretty_print_internal_rep_to_B(File),[File],
prob_cli:check_file_arg(File,'ppB')). % deprecated; is now superseded by ppAB for Event-B machines
recognised_option('-pppl',pretty_print_prolog_file(File),[File],
prob_cli:check_file_arg(File,'pppl')).
recognised_option('-save_state',save_state_space(Filename),[Filename],
prob_cli:check_file_arg(Filename,'save_state')). % possibly save_state_space would be a better name
recognised_option('-save',save_state_for_refinement(Filename),[Filename],
prob_cli:check_file_arg(Filename,'save')).
recognised_option('-sptxt',print_values(Filename),[Filename],
prob_cli:check_file_arg(Filename,'sptxt')).
recognised_option('-sstxt',print_all_values(Dirname),[Dirname],
prob_cli:check_file_arg(Dirname,'sstxt')).
recognised_option('-latex',process_latex_file(In,Out),[In,Out],
(prob_cli:check_file_arg(In,'latex'),prob_cli:check_file_arg(Out,'latex'))).
recognised_option('-bench_csv',benchmark_info_csv_output(File,write),[File],prob_cli:check_file_arg(File,'bench_csv')).
recognised_option('-bench_csv_append',benchmark_info_csv_output(File,append),[File],prob_cli:check_file_arg(File,'bench_csv')).
recognised_option('-trace_replay',trace_check(Style,File,default_trace_replay),[Style,File],prob_cli:check_file_arg(File,'trace_replay')). % can be json, ..
recognised_option('-det_trace_replay',trace_check(Style,File,deterministic_trace_replay),[Style,File],prob_cli:check_file_arg(File,'det_trace_replay')).
recognised_option('-replay',eval_repl([File]),[File],prob_cli:check_file_arg(File,'replay')). % used to be -eval
recognised_option('-state_trace',state_trace(File),[File],prob_cli:check_file_arg(File,'state_trace')).
recognised_option('-typecheckertest',typechecker_test(File),[File],prob_cli:check_file_arg(File,'typecheckertest')).
recognised_option('-enabling_analysis_csv',enabling_analysis_csv(EnablingCsvFile),[EnablingCsvFile],
prob_cli:check_file_arg(EnablingCsvFile,'enabling_analysis_csv')).
recognised_option('-dot_output',dot_analyse_output_prefix(Path),[Path],prob_cli:check_file_arg(Path,'dot_output')).
recognised_option('-evaldot',evaldot(File),[File],prob_cli:check_file_arg(File,'evaldot')).
recognised_option('-his',history(File),[File],prob_cli:check_file_arg(File,'his')).
recognised_option('-visb_click',visb_click(SVGID),[SVGID],true).
recognised_option('-visb',visb_history(JSONFile,HTMLFile,[]),[JSONFile,HTMLFile],
(prob_cli:check_file_arg(JSONFile,'visb'),prob_cli:check_file_arg(HTMLFile,'visb'))).
recognised_option('-visb_with_vars',
visb_history(JSONFile,HTMLFile,[show_constants(all),show_sets(all),show_variables(all)]),
[JSONFile,HTMLFile],
(prob_cli:check_file_arg(JSONFile,'visb_with_vars'),prob_cli:check_file_arg(HTMLFile,'visb_with_vars'))).
recognised_option('-rule_report',rule_report(File), [File], prob_cli:check_file_arg(File,'rule_report')).
recognised_option('-bench_alloy_cmd',run_benchmark(alloy,CmdNames,AlloyFilePath),[CmdNames,AlloyFilePath],prob_cli:check_file_arg(AlloyFilePath,'bench_alloy_cmd')).
recognised_option('-bench_smt_cbc_inv',run_benchmark(smt,cbc_inv,Folder),[Folder],prob_cli:check_file_arg(Folder,'bench_smt_cbc_inv')).
recognised_option('-bench_smt_cbc_deadlock',run_benchmark(smt,cbc_deadlock,Folder),[Folder],prob_cli:check_file_arg(Folder,'bench_smt_cbc_deadlock')).
recognised_option('-bench_smt_bmc',run_benchmark(smt,bmc,Folder),[Folder],prob_cli:check_file_arg(Folder,'bench_smt_bmc')).
recognised_option('-eval_file',eval_string_or_file(file(default),F,exists,_ANY,norecheck),[F],prob_cli:check_file_arg(F,'eval_file')).
recognised_option('-evalt_file',eval_string_or_file(file(default),F,exists,'TRUE',norecheck),[F],prob_cli:check_file_arg(F,'evalt_file')).
recognised_option('-eval_rule_file',eval_string_or_file(file(default),F,forall,_ANY,norecheck),[F],prob_cli:check_file_arg(F,'eval_rule_file')).
recognised_option('-solve_file',eval_string_or_file(file(Solver),F,exists,_ANY,norecheck),[Solver,F],prob_cli:check_file_arg(F,'eval_file')).
recognised_option('-zmq_assertions',zmq_assertion(Identifier),[Identifier],true).
recognised_option('-zmq_worker',zmq_worker(Identifier),[Identifier], true).
recognised_option('-p',set_pref(NPREF,PREFVAL),[PREF,PREFVAL],prob_cli:normalise_pref_name(PREF,NPREF)).
recognised_option('-pref',set_pref(NPREF,PREFVAL),[PREF,PREFVAL],prob_cli:normalise_pref_name(PREF,NPREF)).
recognised_option('-prob_application_type',set_application_type(T),[T],true).
recognised_option('-cbc_redundant_invariants',cbc_redundant_invariants(Nr),[X],tools:arg_is_number(X,Nr)).
recognised_option('-expcterrpos',expect_error_pos(Type,LNr,CNr),[Type,Line,Col],
(tools:arg_is_number(Line,LNr),tools:arg_is_number(Col,CNr))).
recognised_option('-pref_group',set_preference_group(NGroup,Val),[Group,Val],
(prob_cli:normalise_option_atom(Group,NGroup))).
recognised_option('-save_all_traces_until',generate_all_traces_until(Formula,FilePrefix),
[Formula,FilePrefix],
true). % we could check LTL formula and FilePrefix
recognised_option('-check_machine_file_sha',check_machine_file_sha(FILE,SHA1),[FILE,SHA1],
prob_cli:check_file_arg(FILE,'check_machine_file_sha')).
recognised_option('-sha1sum',Command,Args,Call) :-
recognised_option('-check_machine_file_sha',Command,Args,Call).
Calls:
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: max_tagged_integer/1 |
Module: tools_platform |
Name: recognised_option/3 |
Module: prob_cli |
Name: recognised_option/2 |
Module: prob_cli |
Called:
Name: test_eval1/1 |
Module: test_runner |
Name: recognised_option/4 |
Module: prob_cli |
regular_safety_model_check(Nr,Time,ErrRes) :-
statistics(runtime,[T1,_]),
statistics(walltime,[W1,_]),
catch(model_check_aux(Nr,T1,W1,Time,ErrRes), user_interrupt_signal, (
statistics(walltime,[W2,_]), TotalWT is W2-W1,
format_with_colour_nl(user_error,[red],'~nmodel checking interrupted after ~w ms by user (CTRL-C)',[TotalWT]),
coverage(just_summary),
perform_feedback_options_after_exception,
throw(user_interrupt_signal)
)).
Calls:
Name: catch/3 |
|
Name: statistics/2 |
Called:
Module: prob_cli |
regular_safety_model_check_now(Nr,Runtime,WallTime,MCRes,NOW) :-
statistics(runtime,[T1,_]),
statistics(walltime,[W1,_]),
(option(timeout(TO)) -> safe_time_out(regular_safety_model_check(Nr,Time,MCRes),TO,Res)
; regular_safety_model_check(Nr,Time,MCRes), Res=success
),
statistics(runtime,[T2,_]),
statistics(walltime,[W2,_]),
WallTime is W2-W1,
Runtime is T2-T1,
(Res=time_out
-> add_warning(model_check_incomplete,'Not all states examined due to -global_time_out option set by user: ',TO),
writeln_log(timeout_occurred(NOW,model_check(Nr,Time,MCRes))),
coverage(just_summary),
MCRes=time_out
; true).
Calls:
Name: true |
|
Name: =/2 |
|
Name: coverage/1 |
Module: prob_cli |
Name: writeln_log/1 |
Module: foo_error |
Name: add_warning/3 |
Module: foo_error |
Name: ->/3 |
|
Name: is/2 |
|
Name: statistics/2 |
|
Module: prob_cli | |
Name: safe_time_out/3 |
Module: tools_meta |
Name: option/1 |
dynamic predicate |
Called:
Name: cli_start_model_check/3 |
Module: prob_cli |
reload_mainfile :-
file_loaded(_,MainFile),
reset_errors,
print_repl_prompt_s('Reloading and initialising file: '), print_repl_prompt_s(MainFile),nl,
clear_loaded_files,
load_main_file(MainFile,0,_),
get_errors,
cli_start_animation(0),
cli_start_initialisation(0).
Calls:
Module: prob_cli | |
Name: cli_start_animation/1 |
Module: prob_cli |
Name: get_errors/0 |
Module: prob_cli |
Name: load_main_file/3 |
Module: prob_cli |
Name: clear_loaded_files/0 |
Module: prob_cli |
Name: nl |
|
Name: print_repl_prompt_s/1 |
Module: prob_cli |
Name: reset_errors |
Module: foo_error |
Name: file_loaded/2 |
dynamic predicate |
Called:
Name: eval_line/1 |
Module: prob_cli |
remove_constants(const_and_vars(_,Vars),Res) :- !,Res=Vars.
remove_constants([H|T],Res) :- !,exclude(prob_cli:is_constant_binding,[H|T],Res).
remove_constants(root,Res) :- !,Res=[].
remove_constants(concrete_constants(_),Res) :- !, Res=[].
remove_constants(X,X).
Calls:
Name: =/2 |
|
Name: ! |
|
Name: exclude/3 |
Module: foo_error |
Called:
Name: logxml_write_ids/2 |
Module: prob_cli |
Name: print_state_silent/1 |
Module: prob_cli |
repl_evaluate_expressions(StartFiles) :-
get_errors, % first clear any errors from earlier commands
nl,
print('ProB Interactive Expression and Predicate Evaluator '), nl,
print('Type ":help" for more information.'),nl,
turn_show_error_source_off, % reduce clutter in user feedback
(option(evaldot(File))
-> print('Solutions written to dot file: '), print(File),nl
; true
),
(ensure_console_parser_launched
-> maplist(prob_cli:set_repl_input_file(verbose),StartFiles),
top_level_eval
; print('>>> ABORTING REPL'),nl),
turn_show_error_source_on.
Calls:
Name: turn_show_error_source_on |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: top_level_eval/0 |
Module: prob_cli |
Name: maplist/2 |
Module: foo_error |
Module: parsercall | |
Name: ->/3 |
|
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: turn_show_error_source_off |
Module: foo_error |
Name: get_errors/0 |
Module: prob_cli |
Called:
Module: prob_cli | |
Name: start_repl_if_required/0 |
Module: prob_cli |
repl_multi_read_line(Line) :-
(current_repl_input_stream(Stream,_)
-> repl_multi_read_line(Stream,Line),
format(user_output,'~s~n',[Line])
; repl_multi_read_line(user_input,Line)
).
Calls:
Name: repl_multi_read_line/2 |
Module: prob_cli |
Name: format/3 |
|
Name: current_repl_input_stream/2 |
dynamic predicate |
Name: ->/3 |
repl_multi_read_line(Stream,Line) :- repl_multi_read_line_aux(Stream,'>>> ',[],Line).
Calls:
Module: prob_cli |
repl_multi_read_line_aux(Stream,Prompt,SoFar,Line) :-
prompt(OldPrompt,Prompt),
call_cleanup(read_line(Stream,L), prompt(_,OldPrompt)),
(L=end_of_file -> close_repl_input_stream(FileC),
(SoFar=[], FileC = file_closed
-> repl_multi_read_line(Line) % last line of file empty; do not process
; FileC = file_closed -> Line=SoFar
; Line=end_of_file) % user pressed CTRL-D
; append(LFront,[92],L) % line ends with slash \
-> append(LFront,[10],LFront2), % insert newline instead;
% note cleanup_newlines in parsercall transforms this into 8232 \x2028 Unicode
append(SoFar,LFront2,NewSoFar),
repl_multi_read_line_aux(Stream,'... ',NewSoFar,Line)
; append(SoFar,L,Line)).
Calls:
Name: append/3 |
|
Name: RECURSIVE_CALL/4 |
Module: prob_cli |
Name: ->/3 |
|
Name: =/2 |
|
Name: repl_multi_read_line/1 |
Module: prob_cli |
Module: prob_cli | |
Name: call_cleanup/2 |
|
Name: prompt/2 |
Called:
Name: repl_multi_read_line/2 |
Module: prob_cli |
reset_cli :-
announce_event(clear_specification),
announce_event(reset_prob),
reset_expected_error_occurred,
reset_optional_errors_or_warnings,
reset_counter(cli_errors), reset_counter(cli_warnings),
reset_counter(cli_expected_errors),
retractall(accumulated_infos(_,_,_)),
retractall(merged_individual_file_infos(_,_,_)),
retractall(individual_file_infos(_,_,_)),
(file_loaded(_)
-> clear_loaded_machines, % TODO: also treat by reset_prob eventhandling?
retractall(file_loaded(_,_)),
retractall(loaded_main_file(_,_))
; true).
Calls:
Name: true |
|
Name: retractall/1 |
|
Name: clear_loaded_machines |
Module: foo_error |
Name: file_loaded/1 |
Module: prob_cli |
Name: ->/3 |
|
Name: reset_counter/1 |
Module: counter/counter |
Name: reset_optional_errors_or_warnings |
Module: foo_error |
Module: prob_cli | |
Name: announce_event/1 |
Module: eventhandling |
reset_dot_file_number :- retractall(dot_file_number(_)), assertz(dot_file_number(0)).
Calls:
Name: assertz/1 |
|
Name: retractall/1 |
Called:
Name: set_analyse_hook/1 |
Module: prob_cli |
reset_expected_error_occurred :- retractall(expected_error_occurred(_)).
Calls:
Name: retractall/1 |
Called:
Name: reset_cli/0 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
reset_options :- retractall(option(_)),
set_silent_mode(off), set_error_manager_silent_mode(off),
reset_no_color_to_default.
Calls:
Module: tools_printing | |
Name: set_error_manager_silent_mode/1 |
Module: foo_error |
Name: set_silent_mode/1 |
Module: foo_error |
Name: retractall/1 |
Called:
Name: cli_init_options2/2 |
Module: prob_cli |
run_benchmark(alloy, CmdName, AlloyFilePath) :-
alloy2b_benchmarks:benchmark_alloy_command(CmdName, AlloyFilePath).
run_benchmark(smt, bmc, Path) :-
smt_solver_benchmarks:run_additional_bmc_benchmarks(false, [Path]), halt.
run_benchmark(smt, cbc_deadlock, Path) :-
smt_solver_benchmarks:run_additional_deadlock_benchmarks(false, [Path]), halt.
run_benchmark(smt, cbc_inv, Path) :-
smt_solver_benchmarks:run_additional_inductive_inv_benchmarks(false, [Path]), halt.
Calls:
Name: halt |
|
Module: smt_solver_benchmarks | |
Module: smt_solver_benchmarks | |
Module: smt_solver_benchmarks | |
Module: alloy2b_benchmarks |
run_probcli(ArgV,Context) :- % format(user_output,'~n* Starting probcli with argv: ~w~n~n',[ArgV]),
(catch(
run_probcli2(ArgV),
Exc,
process_exception(Exc,Context)
)
-> true
; flush_output,
print_error('INTERNAL ERROR OCCURRED (run_probcli failed) !'),nl,
error_occurred(internal_error),
halt_exception(1)
).
Calls:
Name: halt_exception/1 |
Module: prob_cli |
Name: error_occurred/1 |
Module: prob_cli |
Name: nl |
|
Name: print_error/1 |
Module: tools_printing |
Name: flush_output |
|
Name: true |
|
Name: catch/3 |
|
Name: ->/3 |
Called:
Module: prob_cli |
Description:
cli_set_options(['-vv','-version'|ArgV],RemArgV), %% comment in to have an automatically verbose probcli
run_probcli2(ArgV) :- %print(probcli_startup),nl_time,
probcli_startup,
external_functions:reset_argv,
cli_set_options(ArgV,RemArgV), % recognise command-line options
%% cli_set_options(['-vv','-version'|ArgV],RemArgV), %% comment in to have an automatically verbose probcli
maplist(prob_cli:check_atom_looks_like_file,RemArgV),
(option(prolog_trace) -> error_manager:safe_trace ; true),
!,
run_probcli3(ArgV,RemArgV).
Calls:
Name: run_probcli3/2 |
Module: prob_cli |
Name: ! |
|
Name: true |
|
Name: safe_trace/0 |
Module: error_manager |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: maplist/2 |
Module: foo_error |
Name: cli_set_options/2 |
Module: prob_cli |
Name: reset_argv/0 |
Module: external_functions |
Name: probcli_startup/0 |
Module: prob_cli |
Description:
set_verbose_mode -> does tcltk_turn_debugging_on(19),
run_probcli3(ArgV,RemArgV) :-
( RemArgV=[File],no_command_issued,
get_filename_extension(File,Ext),
\+ do_not_execute_automatically(Ext)
% then assume we want to do -execute_all:
-> assert_option(execute(2147483647,false,current_state(1)))
; true),
if_option_set(set_application_type(PAT),set_prob_application_type(PAT)),
if_option_set(test_mode,set_random_seed_to_deterministic_start_seed, set_new_random_seed),
if_option_set(verbose,
verbose, %% set_verbose_mode -> does tcltk_turn_debugging_on(19),
tcltk_turn_debugging_off),
if_option_set(very_verbose,
very_verbose), %tcltk_turn_debugging_on(5)),
if_option_set(profiling_on,profiling_on),
debug_print(9,'Command Line Arguments: '),debug_println(9,ArgV),
if_option_set(very_verbose,
print_options),
debug_print(6,'Command Line File Args: '),debug_println(6,RemArgV),
if_option_set(cache_storage(StorageDir), set_storage_directory(StorageDir)),
if_option_set(parsercp(ParserLoc),
(add_message(parsercp,'Command -parcercp PATH deprecated, use -p JAVA_PARSER_PATH PATH',''),
set_preference(path_to_java_parser,ParserLoc))
),
if_option_set(parserport(ParserPort),
connect_to_external_console_parser_on_port(ParserPort)),
generate_time_stamp(Datime,NOW),
if_option_set(log(LogF,Mode),
cli_start_logging(LogF,Mode,NOW,Datime,RemArgV)),
if_option_set(runtimechecking,
turn_on_run_time_type_checks,
turn_off_run_time_type_checks),
if_option_set(junit(JUX),
set_junit_mode(JUX)),
set_prefs,
(option_verbose, (option(set_prefs_from_file(_)) ; option(set_preference_group(_,_))),
get_non_default_preferences(list(NDPrefs))
-> format('Non-default preferences:~n',[]),print_list(NDPrefs),nl ; true),
set_optional_errors,
check_unavailable_options,
cli_show_help(ArgV,RemArgV),
if_option_set(set_argv(ArgVStr),
set_argv(ArgVStr)),
if_option_set(selfcheck(_,_),
cli_start_selfcheck),
if_option_set(typechecker_test(Filename),
(run_typecheck_testcase(Filename,typesok) -> halt_prob(NOW,0); halt_prob(NOW,1))),
if_option_set(install_prob_lib(LIBTOINSTALL,INSTALLOPTS), install_prob_lib(LIBTOINSTALL,INSTALLOPTS)),
if_options_set(print_version(VERSIONKIND), print_version(VERSIONKIND)),
if_option_set(check_java_version, check_java_version),
if_option_set(very_verbose,
preferences:print_preferences),
if_option_set(zmq_worker(Identifier), zmq_start_worker(Identifier, NOW)),
%if_option_set(zmq_worker2(MasterIP, Port, ProxyID, Logfile), zmq_start_worker(MasterIP,Port,ProxyID,Logfile,NOW)),
% process remaining arguments as files to load
debug_println(6,processing(RemArgV)),
cli_load_files(RemArgV,NOW), % all CLI arguments which are not understood are supposed to be files to be treated
debug_println(19,finished_loading(RemArgV)),
if_option_set(socket(Port,Loopback),
cli_start_socketserver(Port,Loopback)),
% check_all_expected_errors_occurred(NOW), % is now checked for each file; socket_server should not generate errors ?
debug_println(20,'% probcli execution finished'),
cli_print_junit_results(ArgV),
debug_println(20,'% Stored Junit results'),
stop_xml_probcli_run(NOW),
debug_println(20,'% ProB Finished').
Calls:
Name: debug_println/2 |
Module: foo_error |
Name: stop_xml_probcli_run/1 |
Module: prob_cli |
Module: prob_cli | |
Name: if_option_set/2 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
Name: if_options_set/2 |
Module: prob_cli |
Name: cli_show_help/2 |
Module: prob_cli |
Module: prob_cli | |
Name: set_optional_errors/0 |
Module: prob_cli |
Name: true |
|
Name: nl |
|
Name: print_list/1 |
Module: prob_cli |
Name: format/2 |
|
Name: get_non_default_preferences/1 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Name: option_verbose/0 |
Module: prob_cli |
Name: ->/3 |
|
Name: set_prefs/0 |
Module: prob_cli |
Name: if_option_set/3 |
Module: prob_cli |
Name: generate_time_stamp/2 |
Module: prob_cli |
Name: debug_print/2 |
Module: foo_error |
Name: assert_option/1 |
Module: prob_cli |
Module: prob_cli | |
Name: not/1 |
|
Name: get_filename_extension/2 |
Module: tools |
Name: no_command_issued/0 |
Module: prob_cli |
Name: =/2 |
Called:
Name: run_probcli2/1 |
Module: prob_cli |
run_probcli_with_argv_string(ArgVAtom) :- split_argv_string(ArgVAtom,Atoms),
(Atoms = [probcli|Atoms2] -> true ; Atoms2=Atoms),
run_probcli(Atoms2,[run_probcli_with_argv_string]).
Calls:
Name: run_probcli/2 |
Module: prob_cli |
Name: =/2 |
|
Name: true |
|
Name: ->/3 |
|
Name: split_argv_string/2 |
Module: prob_cli |
run_probcli_with_junit_check(ArgV) :-
catch( run_probcli(ArgV,[junit]),
halt(ExitCode),
( ExitCode = 0 ->
true
; ( junit_mode(S) ->
statistics(runtime,[E,_]), T is E - S,
create_and_print_junit_result(['Integration Tests'],ArgV,T,error([ExitCode]))
; true),
throw(halt(ExitCode)))).
Calls:
Name: catch/3 |
safe_inc_counter(Counter) :-
catch(inc_counter(Counter), E,
format(user_error,'~n*** Exception in counter library, probably not yet initialized: ~w.~n~n',[E])).
Calls:
Name: catch/3 |
Called:
Name: error_occurred/4 |
Module: prob_cli |
save_state_space(StateFile) :- debug_println(20,'% Saving state space to file'),
state_space:tcltk_save_state_space(StateFile).
Calls:
Name: tcltk_save_state_space/1 |
Module: state_space |
Name: debug_println/2 |
Module: foo_error |
seperator(',').
seperator(' ').
seperator(';').
Called:
Name: split_by_seperator2/2 |
Module: prob_cli |
serious_error(get_java_command_path).
serious_error(internal_error(_)).
Called:
Name: error_occurred/4 |
Module: prob_cli |
set_analyse_hook(AddPrefix) :- % set a hook to write false/unknown expressions into a dot file
reset_dot_file_number,
if_options_set(dot_analyse_output_prefix(_Path),
(set_dot_file_prefix_if_option_set(AddPrefix),
register_conjunct_error_hook(prob_cli:pred_eval_hook))).
Calls:
Name: if_options_set/2 |
Module: prob_cli |
Name: reset_dot_file_number/0 |
Module: prob_cli |
Called:
Name: cli_check_assertions/3 |
Module: prob_cli |
Name: cli_check_properties/1 |
Module: prob_cli |
set_argv(V) :-
debug_println(20,set_argv(V)),
external_functions:set_argv_from_atom(V).
Calls:
Name: set_argv_from_atom/1 |
Module: external_functions |
Name: debug_println/2 |
Module: foo_error |
set_current_probcli_command(X) :- retractall(current_probcli_command(_)),
assertz(current_probcli_command(X)).
Calls:
Name: assertz/1 |
|
Name: retractall/1 |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
set_dot_file_prefix(F) :- retractall(dot_file_prefix(_)), assertz(dot_file_prefix(F)).
Calls:
Name: assertz/1 |
|
Name: retractall/1 |
set_dot_file_prefix_if_option_set(AddPrefix) :-
if_options_set(dot_analyse_output_prefix(Path),
(loaded_root_filename(RootName),
% we could also use b_machine_hierarchy:main_machine_name(RootName)
string_concatenate(Path,RootName,P1),
string_concatenate(P1,AddPrefix,FullPath),
set_dot_file_prefix(FullPath),
debug_println(9,dot_file_prefix(FullPath)))).
Calls:
Name: if_options_set/2 |
Module: prob_cli |
Called:
Name: get_dot_file/2 |
Module: prob_cli |
set_junit_mode(X) :-
set_junit_dir(X),
retractall(junit_mode(_)),
statistics(runtime,[Start,_]),
assertz(junit_mode(Start)).
Calls:
Name: assertz/1 |
|
Name: statistics/2 |
|
Name: retractall/1 |
|
Name: set_junit_dir/1 |
Module: junit_tests |
set_new_random_seed :-
now(TimeStamp), % getting the unix time
setrand(TimeStamp). % setting new random seed by every execution of probcli
Calls:
Name: setrand/1 |
Module: random |
Name: now/1 |
Module: foo_error |
set_optional_errors :- % register optional/expected errors in the error_manager; avoid printing on stderr
reset_optional_errors_or_warnings,
(option(optional_error(Type)) ; option(expect_error(Type)) ; option(expect_error_pos(Type,_Line,_Col))),
register_optional_error_or_warning(Type),
fail.
set_optional_errors.
Calls:
Name: fail |
|
Name: register_optional_error_or_warning/1 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Name: reset_optional_errors_or_warnings |
Module: foo_error |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
set_pref(P,V) :-
debug_println(20,set_pref(P,V)),
( eclipse_preference(P,_)
-> set_eclipse_preference(P,V)
; deprecated_eclipse_preference(P,_,_,_) -> set_eclipse_preference(P,V)
; obsolete_eclipse_preference(P) -> probcli_add_light_warning('Obsolete preference: ',P)
; obsolete_preference(P) -> probcli_add_light_warning('Obsolete preference: ',P)
; % might be a term if its a plugin preference
atom_codes(P,Codes),
append(Codes,".",Codes2), % to make term readable by read_from_codes
read_from_codes(Codes2,Preference),
(nonvar(Preference),preference_val_type(Preference,_)
-> convert_cli_arg(V,Value),
set_preference(Preference,Value)
; P=timeout ->
add_error(probcli,'Unknown preference timeout. Either set preference TIME_OUT or use -gobal_time_out command','')
; get_possible_preferences_matches_msg(P,FuzzyMsg) ->
ajoin(['Unknown preference: ',P,'. Did you mean:'],Msg),
add_error(probcli,Msg,FuzzyMsg)
; get_possible_fuzzy_match_options(P,FuzzyMatches),
% will only give perfect matches as P usually does not have the hyphen in front
FuzzyMatches = [FMC|_] ->
ajoin(['Unknown preference ', P, ' which looks like a probcli command! Did you want to call:'],Msg),
add_error(probcli,Msg,FMC)
;
add_error(probcli,'Unknown preference:',P)
)
).
Calls:
Name: add_error/3 |
Module: foo_error |
Name: ajoin/2 |
Module: tools_strings |
Name: =/2 |
|
Module: prob_cli | |
Name: ->/3 |
|
Module: tools_matching | |
Name: set_preference/2 |
Module: foo_error |
Name: convert_cli_arg/2 |
Module: tools_strings |
Name: preference_val_type/2 |
Module: foo_error |
Name: nonvar/1 |
|
Name: read_from_codes/2 |
Module: foo_error |
Name: append/3 |
|
Name: atom_codes/2 |
|
Module: prob_cli | |
Name: obsolete_preference/1 |
Module: foo_error |
Name: obsolete_eclipse_preference/1 |
Module: foo_error |
Name: set_eclipse_preference/2 |
Module: prob2_interface |
Name: deprecated_eclipse_preference/4 |
Module: foo_error |
Name: eclipse_preference/2 |
Module: foo_error |
Name: debug_println/2 |
Module: foo_error |
Called:
Name: set_prefs/0 |
Module: prob_cli |
Name: zmq_set_option/1 |
Module: prob_cli |
set_prefs :-
if_option_set(socket(_,_), % then we may need the event(.) transition_info for the Java API
preferences:set_preference(store_event_transinfo,true)),
option(set_prefs_from_file(File)),
debug_println(20,load_preferences(File)),
preferences:load_preferences(File),
fail.
set_prefs :-
option(set_preference_group(P,V)),
debug_println(20,set_preference_group(P,V)),
set_preference_group(P,V),
fail.
set_prefs :-
option(set_pref(P,V)),
set_pref(P,V),
fail.
set_prefs :- option(set_card(Set,V)),
debug_println(20,set_card(Set,V)),
convert_cli_arg(V,Value),
set_user_defined_scope(Set,Value),
fail.
set_prefs :-
( option(breadth_first) -> set_depth_breadth_first_mode(breadth_first)
; option(depth_first) -> set_depth_breadth_first_mode(depth_first)
; option(depth_breadth_first_mode(M)) -> set_depth_breadth_first_mode(M)
; true
).
Calls:
Name: true |
|
Module: state_space_exploration_modes | |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Name: fail |
|
Name: set_user_defined_scope/2 |
Module: b_global_sets |
Name: convert_cli_arg/2 |
Module: tools_strings |
Name: debug_println/2 |
Module: foo_error |
Name: set_pref/2 |
Module: prob_cli |
Name: set_preference_group/2 |
Module: foo_error |
Name: load_preferences/1 |
Module: preferences |
Name: if_option_set/2 |
Module: prob_cli |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
Module: prob_cli | |
Name: tests/0 |
Module: code2vec_tests |
Name: tests/0 |
Module: synthesis_tests |
Name: init_pref/0 |
Module: fuzzer_runner.pl |
set_random_seed_to_deterministic_start_seed :-
% in test_mode we do not change the random number generator's initial seed
true. %getrand(CurrState),setrand(CurrState). % this seems to be a no-op
Calls:
Name: true |
set_repl_input_file(_,File) :- current_repl_input_stream(_,File),!,
add_error(set_repl_input_file,'Cyclic file replay: ',File).
set_repl_input_file(Verbose,File) :-
% close_repl_input_stream, % this way we allow one REPL file to call another
safe_open_file(File,read,Stream,[encoding(utf8)]),!,
(Verbose=verbose -> format('Replaying REPL commands in file: ~w~n',[File]) ; true),
asserta(current_repl_input_stream(Stream,File)).
set_repl_input_file(_,_).
Calls:
Name: asserta/1 |
|
Name: true |
|
Name: format/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: ! |
|
Name: safe_open_file/4 |
Module: tools_io |
Name: add_error/3 |
Module: foo_error |
Name: current_repl_input_stream/2 |
dynamic predicate |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
show_cache(default) :- !,
(option_verbose -> show_cache(normal) ; show_cache(verbose)).
show_cache(Verbose) :-
show_cache_file_contents(Verbose).
Calls:
Module: value_persistance | |
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: option_verbose/0 |
Module: prob_cli |
Name: ->/3 |
|
Name: ! |
show_initialisation_summary(NOW) :-
findall(ID,state_space:is_concrete_constants_state_id(ID),L),
length(L,Nr), N1 is Nr+1, % for root
writeln_log(uninitialised_states(NOW,N1)),
format(' Uninitialised states: ~w (root and constants only)~n',[N1]).
Calls:
Name: format/2 |
|
Name: writeln_log/1 |
Module: foo_error |
Name: is/2 |
|
Name: length/2 |
|
Name: findall/3 |
Called:
Name: cli_show_coverage/4 |
Module: prob_cli |
show_last_expression_as_table :- \+ last_expression(_,_Expr),!,
print_red('Please evaluate an expression or predicate first.'),nl.
show_last_expression_as_table :-
get_last_result_value(Expr,_,Value),
print_value_as_table(Expr,Value).
Calls:
Name: print_value_as_table/2 |
Module: foo_error |
Name: get_last_result_value/3 |
Module: foo_error |
Name: nl |
|
Name: print_red/1 |
Module: tools_printing |
Name: ! |
|
Name: last_expression/2 |
Module: foo_error |
Name: not/1 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
show_operation_coverage_summary(NOW) :-
get_operation_name_coverage_infos(PossibleNr,FeasibleNr,UncovNr,UncoveredList),
writeln_log(uncovered_info(NOW,PossibleNr,UncoveredList)),
(UncovNr=0 -> format(' All ~w possible operations have been covered',[PossibleNr]),nl
; (FeasibleNr=PossibleNr
-> format(' The following ~w operations (out of ~w) were not covered:~n ~w~n',
[UncovNr, PossibleNr,UncoveredList])
; INr is PossibleNr-FeasibleNr,
format(' The following ~w operations (out of ~w with ~w infeasible) were not covered:~n ~w~n',
[UncovNr, PossibleNr, INr,UncoveredList])
)).
Calls:
Name: format/2 |
|
Name: is/2 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: nl |
|
Name: writeln_log/1 |
Module: foo_error |
Module: state_space |
Called:
Name: cli_show_coverage/4 |
Module: prob_cli |
show_origin('') :- last_repl_error(_,_),!, % error occured: show error in editor like :e would
edit_main_file.
show_origin('') :- !,format_error_with_nl('! You need to provided an identifier',[]).
show_origin(ID) :- source_code_for_identifier(ID,Kind,_Type,OriginStr,OriginTerm,_Source),!,
format('~w: ~w~norigin: ~w~n',[Kind,ID,OriginStr]),
open_file_at_position(OriginTerm).
show_origin(ID) :- format_error_with_nl('! Could not find origin for ~w',[ID]).
Calls:
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: open_file_at_position/1 |
Module: prob_cli |
Name: format/2 |
|
Name: ! |
|
Module: bmachine | |
Name: edit_main_file/0 |
Module: prob_cli |
Name: last_repl_error/2 |
dynamic predicate |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
show_source(ID) :- source_code_for_identifier(ID,Kind,_Type,OriginStr,OriginTerm,Source),!,
translate:translate_subst_or_bexpr(Source,PPS),
%format('~w: ~w (Type: ~w)~norigin: ~w~nsource: ~w~n',[Kind,ID,_Type,Origin,PPS]).
format('~w: ~w~norigin: ~w~nsource: ~w~n',[Kind,ID,OriginStr,PPS]),
(OriginTerm=b(_,_,_),get_texpr_description(OriginTerm,Description)
-> format('description: ~w~n',[Description]) ; true).
show_source(ID) :- format_error_with_nl('! Could not find source for ~w',[ID]).
Calls:
Name: format_error_with_nl/2 |
Module: tools_printing |
Name: true |
|
Name: format/2 |
|
Name: get_texpr_description/2 |
Module: bsyntaxtree |
Name: =/2 |
|
Name: ->/3 |
|
Module: translate | |
Name: ! |
|
Module: bmachine |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
sicstus_profile_statistics :-
%(hit_profiler:print_hit_profile_statistics -> true ; true), % only used by external functions
(option(profiling_on)
-> catch(print_profile,
error(existence_error(_,_),_),
print_red('SICStus Prolog Profiler can only be used when running from source'))
; true).
Calls:
Name: true |
|
Name: catch/3 |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
Called:
Name: cli_print_statistics/1 |
Module: prob_cli |
silent :- (option(silent) -> true ; assert_option(silent)).
Calls:
Name: assert_option/1 |
Module: prob_cli |
Name: true |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
sort_assertions(X,X).
Called:
Name: make_assertionwps/1 |
Module: prob_cli |
specfile_trans_with_check(CurState,ActionName,Act,NewState,Residue) :-
if(specfile_trans_or_partial_trans(CurState,ActionName,Act,NewState,_TransInfo,Residue,Partial), % no time-out !
(check_partial_trans(Partial,ActionName),
(Partial=true -> true ; add_new_transition_to_cache_from_expanded_state(CurState,Act,NewState))),
check_deadlock_fail(ActionName)
).
Calls:
Name: check_deadlock_fail/1 |
Module: prob_cli |
Module: value_persistance | |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: check_partial_trans/2 |
Module: prob_cli |
Name: specfile_trans_or_partial_trans/7 |
Module: foo_error |
Name: if/3 |
split_argv_string(ArgVAtom,Atoms) :- split_atom(ArgVAtom,[' '],Atoms). % TODO: treat quoting
Calls:
Name: split_atom/3 |
Module: tools |
Called:
Module: prob_cli |
split_by_seperator(NonAtomic,Res) :- \+ atomic(NonAtomic),!, Res=[NonAtomic].
split_by_seperator(String,Strings) :-
atom_chars(String,Chars),
split_by_seperator2(Chars,Strings).
Calls:
Name: split_by_seperator2/2 |
Module: prob_cli |
Name: atom_chars/2 |
|
Name: =/2 |
|
Name: ! |
|
Name: atomic/1 |
|
Name: not/1 |
split_by_seperator2(Chars,Result) :-
append(AChars,[X|B],Chars),seperator(X),!,
(AChars=[] -> Result=Rest ; atom_chars(A,AChars), Result=[A|Rest]),
split_by_seperator2(B,Rest).
split_by_seperator2(Chars,[String]) :- atom_chars(String,Chars).
Calls:
Name: atom_chars/2 |
|
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: =/2 |
|
Name: ->/3 |
|
Name: ! |
|
Name: seperator/1 |
Module: prob_cli |
Name: append/3 |
Called:
Name: split_by_seperator/2 |
Module: prob_cli |
start_animation_without_computing :-
update_preferences_from_spec(ListOfPrefs),
(ListOfPrefs=[] -> true ; write_prolog_term_as_xml_to_log(b_machine_preferences(ListOfPrefs))),
set_prefs, % override SET_PREF in DEFINITIONS with values from command-line;
start_animation,
ifm_option_set(add_additional_property(PROP),
cli_add_additional_property(PROP)),
get_errors.
Calls:
Name: get_errors/0 |
Module: prob_cli |
Name: ifm_option_set/2 |
Module: prob_cli |
Name: start_animation/0 |
Module: prob2_interface |
Name: set_prefs/0 |
Module: prob_cli |
Name: write_prolog_term_as_xml_to_log/1 |
Module: foo_error |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Module: prob2_interface |
Called:
Module: prob_cli | |
Name: cli_start_animation/1 |
Module: prob_cli |
Name: test_kodkod_and_exit/2 |
Module: prob_cli |
Name: zmq_start_master/2 |
Module: prob_cli |
start_check_disabled(ActionName,StartActionTime) :- option(execute_monitoring),!,
statistics(runtime,[StartActionTime,_]),
(true
; statistics(runtime,[EndActionTime,_]),
Delta is EndActionTime - StartActionTime,
Delta > 50,
format_with_colour(user_output,[blue],'~n ~5|: WARNING from -execute_monitor: ~w ms for disabled operation ~w~n',[Delta,ActionName]),
fail
).
start_check_disabled(_,0).
Calls:
Name: fail |
|
Name: format_with_colour/4 |
Module: tools_printing |
Name: >/2 |
|
Name: is/2 |
|
Name: statistics/2 |
|
Name: true |
|
Name: ! |
|
Name: option/1 |
dynamic predicate |
Called:
Name: cli_execute_trans/5 |
Module: prob_cli |
start_ltsmin_srv(X, NOW) :-
nls,println_silent('Starting LTSMin Server...'),
if_option_set(ltl_formula_model_check(Formula, _),true),
ltsmin_init(X, Zocket, Formula),
ltsmin_loop(Zocket),
ltsmin_teardown(Zocket, X),
nls,println_silent('Stopped LTSMin Server.'),
halt_prob(NOW,0). % if we additionally specify -ltsformula, we do not want to model check it
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: println_silent/1 |
Module: foo_error |
Name: nls |
Module: foo_error |
Name: ltsmin_teardown/2 |
Module: ltsmin/ltsmin |
Name: ltsmin_loop/1 |
Module: ltsmin/ltsmin |
Name: ltsmin_init/3 |
Module: ltsmin/ltsmin |
Name: if_option_set/2 |
Module: prob_cli |
start_probcli_timer(timer(T1,WT1)) :-
statistics(runtime,[T1,_]),
statistics(walltime,[WT1,_]).
Calls:
Name: statistics/2 |
Called:
Name: cli_computeOperations/1 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Module: prob_cli | |
Name: load_main_file/3 |
Module: prob_cli |
Name: cli_assertions_ko2/3 |
Module: prob_cli |
Name: cli_invariant_ko2/4 |
Module: prob_cli |
Name: cli_trans/5 |
Module: prob_cli |
Name: cli_start_animation/1 |
Module: prob_cli |
start_repl_even_after_failure :-
(option(eval_repl([]))
-> format_with_colour_nl(user_output,[blue],'Starting REPL, but ignoring any other commands',[]),
% TODO: check if setup_constants_fails and then suggest e.g. :core @PROPERTIES command
start_repl_if_required % can be useful to debug properties, e.g, one can fix an error and reload
; true
).
Calls:
Name: true |
|
Name: start_repl_if_required/0 |
Module: prob_cli |
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: option/1 |
dynamic predicate |
Name: ->/3 |
start_repl_if_required :-
(option(eval_repl([]))
-> (repl_evaluate_expressions([]) -> true ; true)
; true).
Calls:
Name: true |
|
Module: prob_cli | |
Name: ->/3 |
|
Name: option/1 |
dynamic predicate |
start_xml_feature(FeatureName,[CErrs1,CWarns1,CEErrs1]) :-
debug_format(20,'% Starting ~w~n',[FeatureName]),
get_counter(cli_errors,CErrs1), get_counter(cli_warnings,CWarns1), get_counter(cli_expected_errors,CEErrs1),
start_xml_group_in_log(FeatureName).
Calls:
Name: start_xml_group_in_log/1 |
Module: foo_error |
Name: get_counter/2 |
Module: counter/counter |
Name: debug_format/3 |
Module: foo_error |
Called:
Module: prob_cli | |
Module: prob_cli | |
Name: cli_start_model_check/3 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
Name: cli_ltl_model_check/4 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_checkAssertion/4 |
Module: prob_cli |
Name: cli_start_mc_with_tlc/0 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_ctl_model_check/4 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: cli_execute2/3 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
Name: cli_random_animate/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Module: prob_cli |
start_xml_feature(FeatureName,Attr,Value,[CErrs1,CWarns1,CEErrs1]) :-
debug_format(20,'% Starting ~w (~w=~w)~n',[FeatureName,Attr,Value]),
get_counter(cli_errors,CErrs1), get_counter(cli_warnings,CWarns1), get_counter(cli_expected_errors,CEErrs1),
start_xml_group_in_log(FeatureName,Attr,Value).
Calls:
Name: start_xml_group_in_log/3 |
Module: foo_error |
Name: get_counter/2 |
Module: counter/counter |
Name: debug_format/3 |
Module: foo_error |
Called:
Module: prob_cli | |
Module: prob_cli | |
Name: cli_start_model_check/3 |
Module: prob_cli |
Name: cli_load_files/2 |
Module: prob_cli |
Name: cli_ltl_model_check/4 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_checkAssertion/4 |
Module: prob_cli |
Name: cli_start_mc_with_tlc/0 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_ctl_model_check/4 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: cli_execute2/3 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
Name: cli_random_animate/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Module: prob_cli |
stop_probcli_debug_timer(Timer,Msg) :- (debug_mode(on) -> stop_probcli_timer(Timer,Msg) ; true).
Calls:
Name: true |
|
Name: stop_probcli_timer/2 |
Module: prob_cli |
Name: debug_mode/1 |
Module: foo_error |
Name: ->/3 |
Called:
Name: cli_start_animation/1 |
Module: prob_cli |
Name: cli_invariant_ko2/4 |
Module: prob_cli |
Name: cli_assertions_ko2/3 |
Module: prob_cli |
Name: load_main_file/3 |
Module: prob_cli |
stop_probcli_timer(timer(T1,WT1),Msg) :- stop_probcli_timer(timer(T1,WT1),Msg,_).
Calls:
Name: stop_probcli_timer/3 |
Module: prob_cli |
Called:
Name: cli_trans/5 |
Module: prob_cli |
Name: cli_computeOperations/1 |
Module: prob_cli |
Module: prob_cli |
stop_probcli_timer(timer(T1,WT1),Msg,WTotTime) :-
statistics(runtime,[T2,_]), TotTime is T2-T1,
statistics(walltime,[WT2,_]), WTotTime is WT2-WT1,
convert_ms_time_to_string(WT2,WTString),
format('~w ~w ms walltime (~w ms runtime), since start: ~w~n',[Msg,WTotTime,TotTime,WTString]),
!.
stop_probcli_timer(Timer,Msg,_) :- add_internal_error('Illegal timer call: ',stop_probcli_timer(Timer,Msg)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: ! |
|
Name: format/2 |
|
Module: tools | |
Name: is/2 |
|
Name: statistics/2 |
Called:
Name: cli_trans/5 |
Module: prob_cli |
Name: cli_computeOperations/1 |
Module: prob_cli |
Module: prob_cli |
stop_xml_feature(FeatureName,[CErrs1,CWarns1,CEErrs1]) :-
get_counter(cli_errors,CErrs2), get_counter(cli_warnings,CWarns2), get_counter(cli_expected_errors,CEErrs2),
CErrs is CErrs2-CErrs1, CWarns is CWarns2-CWarns1, CEErrs is CEErrs2-CEErrs1,
(CEErrs>0
-> write_xml_element_to_log('probcli-errors',[errors/CErrs,warnings/CWarns,expected_errors/CEErrs])
; write_xml_element_to_log('probcli-errors',[errors/CErrs,warnings/CWarns])
),
debug_format(20,'% Finished ~w (errors=~w, warnings=~w, expected_errors=~w)~n',[FeatureName,CErrs,CWarns,CEErrs]),
stop_xml_group_in_log(FeatureName),
!.
stop_xml_feature(FeatureName,L) :-
add_internal_error('Illegal or failed call:',stop_xml_feature(FeatureName,L)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: ! |
|
Name: stop_xml_group_in_log/1 |
Module: foo_error |
Name: debug_format/3 |
Module: foo_error |
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: >/2 |
|
Name: ->/3 |
|
Name: is/2 |
|
Name: get_counter/2 |
Module: counter/counter |
Called:
Name: constraint_based_check/1 |
Module: prob_cli |
Name: cli_checkAssertion/4 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: cbc_sequence/3 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_load_files/2 |
Module: prob_cli |
Module: prob_cli | |
Name: cli_start_mc_with_tlc/0 |
Module: prob_cli |
Name: cbc_refinement/0 |
Module: prob_cli |
Name: cli_random_animate/3 |
Module: prob_cli |
Name: cli_start_model_check/3 |
Module: prob_cli |
Name: cli_execute2/3 |
Module: prob_cli |
Module: prob_cli | |
Module: prob_cli | |
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cli_ctl_model_check/4 |
Module: prob_cli |
Name: cli_load_files3/4 |
Module: prob_cli |
Name: cli_ltl_model_check/4 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Module: prob_cli |
stop_xml_probcli_run(NOW) :-
get_counter(cli_errors,CErrs), get_counter(cli_warnings,CWarns), get_counter(cli_expected_errors,EErrs),
writeln_log_time(prob_finished(NOW,CErrs,CWarns)),
(EErrs>0
-> write_xml_element_to_log('probcli-errors',[errors/CErrs,warnings/CWarns,expected_errors/EErrs])
; write_xml_element_to_log('probcli-errors',[errors/CErrs,warnings/CWarns])
),
((CErrs>0 ; CWarns>0) -> format(user_error,'! Total Errors: ~w, Warnings:~w~n',[CErrs,CWarns]) ; true),
stop_xml_group_in_log('probcli-run'). % Generating this tag means probcli ran to completion without segfault,...
Calls:
Name: stop_xml_group_in_log/1 |
Module: foo_error |
Name: true |
|
Name: format/3 |
|
Name: >/2 |
|
Name: ->/3 |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: writeln_log_time/1 |
Module: foo_error |
Name: get_counter/2 |
Module: counter/counter |
Called:
Name: run_probcli3/2 |
Module: prob_cli |
Name: halt_prob/2 |
Module: prob_cli |
store_last_error_location_for_repl :-
retractall(last_repl_error(_,_)),
check_error_span_file_linecol(_,File,Line,_,_,_),!,
assertz(last_repl_error(File,Line)).
store_last_error_location_for_repl.
Calls:
Name: assertz/1 |
|
Name: ! |
|
Name: check_error_span_file_linecol/6 |
Module: foo_error |
Name: retractall/1 |
strip_leading_ws([32|X],R) :- !, strip_leading_ws(X,R).
strip_leading_ws(X,X).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: ! |
Called:
Name: generate_atom_list/3 |
Module: prob_cli |
strip_ws([H|T],Res) :- is_ws(H),!, strip_ws(T,Res).
strip_ws(C,Res) :- reverse(C,CR), strip_ws2(CR,SCR), reverse(SCR,Res).
Calls:
Name: reverse/2 |
Module: foo_error |
Name: strip_ws2/2 |
Module: prob_cli |
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: ! |
|
Name: is_ws/1 |
Module: prob_cli |
Called:
Name: eval_probcli_repl_line/1 |
Module: prob_cli |
Name: parse_eval_command/3 |
Module: prob_cli |
strip_ws2([H|T],Res) :- is_ws(H),!, strip_ws2(T,Res).
strip_ws2(R,R).
Calls:
Name: RECURSIVE_CALL/2 |
Module: prob_cli |
Name: ! |
|
Name: is_ws/1 |
Module: prob_cli |
Called:
Name: strip_ws/2 |
Module: prob_cli |
syntax_help :- prob_summary(S),
format(user_output,'~w',S).
Calls:
Name: format/3 |
|
Name: prob_summary/1 |
dynamic predicate |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
test_kodkod_and_exit(MaxResiduePreds,NOW) :-
start_animation_without_computing,
test_kodkod(MaxResiduePreds),
halt_prob(NOW,0).
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: test_kodkod/1 |
Module: foo_error |
Module: prob_cli |
Meta: timeout_call(0,-,-)
timeout_call(Call,NOW,PP) :- option(timeout(TO)),!,
statistics(runtime,[T1,_]),
safe_time_out(Call,TO,Res),
statistics(runtime,[T2,_]), Runtime is T2-T1,
formatsilent('Runtime for ~w: ~w ms~n',[PP,Runtime]),
(Res=time_out -> print('*** Timeout occurred: '), print(TO),nl,
print('*** Call: '), print(Call),nl,
nl,
writeln_log(timeout_occurred(NOW,Call))
; true).
timeout_call(Call,_NOW,PP) :-
statistics(runtime,[T1,_]),
call(Call),
statistics(runtime,[T2,_]), Runtime is T2-T1,
formatsilent('Runtime for ~w: ~w ms~n',[PP,Runtime]).
Calls:
Name: formatsilent/2 |
Module: foo_error |
Name: is/2 |
|
Name: statistics/2 |
|
Name: call/1 |
|
Name: true |
|
Name: writeln_log/1 |
Module: foo_error |
Name: nl |
|
Name: print/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: safe_time_out/3 |
Module: tools_meta |
Name: ! |
|
Name: option/1 |
dynamic predicate |
top_level_eval :-
catch(top_level_eval1, halt(0), (format('~s', ["Bye."]), nl)).
Calls:
Name: catch/3 |
Called:
Module: prob_cli |
top_level_eval1 :-
(interruptable_call(eval1) -> true
; print_red('Evaluation failed or interrupted'),nl,
print_repl_prompt('Use :q to quit REPL'),nl),
reset_errors,
top_level_eval1.
Calls:
Name: RECURSIVE_CALL/0 |
Module: prob_cli |
Name: reset_errors |
Module: foo_error |
Name: nl |
|
Name: print_repl_prompt/1 |
Module: prob_cli |
Name: print_red/1 |
Module: tools_printing |
Name: true |
|
Name: interruptable_call/1 |
Module: user_interrupts |
Name: ->/3 |
translate_err_type(check_assertions,'ASSERTIONS') :- !.
translate_err_type(cli_check_assertions,'ASSERTIONS') :- !.
translate_err_type(check_goal,'GOAL') :- !.
translate_err_type(load_po_file,'PROOF OBLIGATIONS') :- !.
translate_err_type(cli_wd_check,'WD PROOF OBLIGATIONS') :- !.
translate_err_type(X,X).
Calls:
Name: ! |
Called:
Name: check_required_infos/3 |
Module: prob_cli |
translate_exception(user_interrupt_signal,'User-Interrupt (CTRL-C)').
translate_exception(enumeration_warning(_,_,_,_,_),'Enumeration Warning').
translate_exception(E,E).
translate_solver_result('TRUE',I) :- !, I=[false-0,true-1,unknown-0].
translate_solver_result('FALSE',I) :- !, I=[false-1,true-0,unknown-0].
translate_solver_result('UNKNOWN',I) :- !,I=[false-0,true-0,unknown-1].
translate_solver_result('**** TIME-OUT ****',I) :- !,I=[false-0,true-0,unknown-1].
translate_solver_result(_,[false-0,true-0,unknown-1]). % we could record this as error
Calls:
Name: =/2 |
|
Name: ! |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
treat_existence_error(source_sink,File,E,Option) :- !,
format_with_colour_nl(user_error,[red],
'* Could not find file ~w~n* for probcli command ~w~n* Detailed error: ~w',[File,Option,E]).
treat_existence_error(_,_,E,Option) :-
format_with_colour_nl(user_error,[red],
'* probcli command not yet supported in REPL: ~w~n* Error: ~w',[Option,E]).
Calls:
Name: format_with_colour_nl/4 |
Module: tools_printing |
Name: ! |
treat_option(silent) :- !, set_silent_mode(on),set_error_manager_silent_mode(on).
treat_option(force_no_silent) :- !, set_silent_mode(off),set_error_manager_silent_mode(off).
treat_option(no_color) :- !, set_no_color(true).
treat_option(_).
Calls:
Name: set_no_color/1 |
Module: tools_printing |
Name: ! |
|
Name: set_error_manager_silent_mode/1 |
Module: foo_error |
Name: set_silent_mode/1 |
Module: foo_error |
Called:
Name: assert_option/1 |
Module: prob_cli |
trim_quotes([34|T],Res) :- append(Res,[34],T),!. % double quotes
trim_quotes([39|T],Res) :- append(Res,[39],T),!. % single quotes
trim_quotes(R,R).
Calls:
Name: ! |
|
Name: append/3 |
Called:
Name: exec_eval_command/2 |
Module: prob_cli |
trimcore_if_useful(_) :- option(release_java_parser),!, prob_trimcore.
trimcore_if_useful([]) :- % try and reduce Prologs memory consumption, see also PROLOGKEEPSIZE parameter
% a lot of memory can be consumed loading .prob file and doing machine construction
!,
(option(X), memory_intensive_option(X)
-> debug_format(9,'Not trimming memory usage because of memory intensive option: ~w~n',[X])
; statistics_memory_used(M), M< 300000000 % less than 300 MB used
-> debug_format(9,'Not trimming memory usage because of memory used is already low: ~w~n',[M])
; prob_trimcore
).
trimcore_if_useful(_) :- debug_println(9,'Not trimming memory usage as there are still files to process').
Calls:
Name: debug_println/2 |
Module: foo_error |
Name: prob_trimcore/0 |
Module: prob_cli |
Name: debug_format/3 |
Module: foo_error |
Name: </2 |
|
Name: statistics_memory_used/1 |
Module: tools |
Name: ->/3 |
|
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: ! |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
truncate_animate_action(Action,TA) :-
(option_verbose -> TA = Action
; \+ atom(Action) -> TA = Action
; truncate_atom(Action,100,TA)).
Calls:
Name: truncate_atom/3 |
Module: tools_strings |
Name: =/2 |
|
Name: atom/1 |
|
Name: not/1 |
|
Name: ->/3 |
|
Name: option_verbose/0 |
Module: prob_cli |
Called:
Name: cli_animateOperationNr/3 |
Module: prob_cli |
unset_analyse_hook :- predicate_evaluator:reset_conjunct_error_hook.
Calls:
Module: predicate_evaluator |
Called:
Name: cli_check_assertions/3 |
Module: prob_cli |
Name: cli_check_properties/1 |
Module: prob_cli |
unset_current_probcli_command :- retractall(current_probcli_command(_)).
Calls:
Name: retractall/1 |
Called:
Name: eval_string_or_file/5 |
Module: prob_cli |
update_time_stamp(NOW1) :- retractall(probcli_time_stamp(_)),
assertz(probcli_time_stamp(NOW1)).
Calls:
Name: assertz/1 |
|
Name: retractall/1 |
Called:
Name: cli_load_files3/4 |
Module: prob_cli |
verbose :- tcltk_turn_debugging_on(19).
Calls:
Name: tcltk_turn_debugging_on/1 |
Module: foo_error |
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
verbose_off :- tcltk_turn_debugging_off.
Calls:
Name: tcltk_turn_debugging_off |
Module: foo_error |
very_verbose :- tcltk_turn_debugging_on(5).
Calls:
Name: tcltk_turn_debugging_on/1 |
Module: foo_error |
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
we_did_something :- option(print_version(_)).
we_did_something :- option(check_java_version).
we_did_something :- option(check_parser_version).
we_did_something :- option(install_prob_lib(_,_)).
Calls:
Name: option/1 |
dynamic predicate |
Called:
Name: cli_load_files/2 |
Module: prob_cli |
we_need_only_static_assertions(ALL) :- specfile:b_or_z_mode,
(option(cli_check_assertions(main,_)) -> ALL=main
; option(cli_check_assertions(ALL,_))),
% we do an assertion check
\+ ((option(A), option_requires_all_properties(A))),
b_get_assertions(ALL,dynamic,[]). % the assertions do not reference variables
Calls:
Name: b_get_assertions/3 |
Module: bmachine |
Module: prob_cli | |
Name: option/1 |
dynamic predicate |
Name: not/1 |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: b_or_z_mode/0 |
Module: specfile |
Called:
Module: prob_cli | |
Name: cli_start_animation/1 |
Module: prob_cli |
write_cbc_check_result(Result) :-
functor(Result,F,_), % example result: no_counterexample_exists(Ids,Prd,Other)
write_xml_element_to_log(cbc_check_result,[result/F]).
Calls:
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: functor/3 |
Called:
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
write_cbc_check_result(Result,ErrorsWereFound) :- functor(Result,F,_),
write_xml_element_to_log(cbc_check_result,[result/F,errors_were_found/ErrorsWereFound]).
Calls:
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: functor/3 |
Called:
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cbc_sequence/3 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Name: constraint_based_check/1 |
Module: prob_cli |
write_deferred_set_used(AllowEnumWarning) :-
write_result_to_file(no_counterexample_found('"Deferred Sets Used"')),
(AllowEnumWarning=true -> true ; error_occurred(cbc_assertions_enumeration_warning)).
Calls:
Name: error_occurred/1 |
Module: prob_cli |
Name: true |
|
Name: =/2 |
|
Name: ->/3 |
|
Name: write_result_to_file/1 |
Module: prob_cli |
Called:
Module: prob_cli |
write_dot_graph_to_new_file(Status,BExpr) :-
dot_file_prefix(Dir),get_next_nr(Nr),
string_concatenate('_',Status,Str1),
string_concatenate(Nr,Str1,NS),
string_concatenate(Dir,NS,F1),
atom_concat(F1,'.dot',FileName),
tcltk_interface:write_dot_file_for_pred_expr(BExpr,FileName).
Calls:
Module: tcltk_interface | |
Name: atom_concat/3 |
|
Name: string_concatenate/3 |
Module: tools |
Name: get_next_nr/1 |
Module: prob_cli |
Name: dot_file_prefix/1 |
Module: prob_cli |
Called:
Name: pred_eval_hook/5 |
Module: prob_cli |
write_important_xml_element_to_log(Category,Infos) :-
include(prob_cli:important_info,Infos,II),
write_xml_element_to_log(Category,II).
Calls:
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: include/3 |
Module: foo_error |
Called:
Name: cli_check_assertions/3 |
Module: prob_cli |
Name: cli_check_goal/0 |
Module: prob_cli |
Name: cli_check_properties/1 |
Module: prob_cli |
write_result_to_file(Result) :- option(cbc_result_file(FILE)),
safe_open_file(FILE,write,Stream,[encoding(utf8)]),
!,
write(Stream,Result),
close(Stream).
write_result_to_file(_).
Calls:
Name: close/1 |
|
Name: write/2 |
|
Name: ! |
|
Name: safe_open_file/4 |
Module: tools_io |
Name: option/1 |
dynamic predicate |
Called:
Name: cbc_assertions/2 |
Module: prob_cli |
Name: cbc_deadlock_check/1 |
Module: prob_cli |
Module: prob_cli | |
Name: constraint_based_check/1 |
Module: prob_cli |
Module: prob_cli |
xml_log_machine_statistics :-
animation_mode(Major),
(animation_minor_mode(Minor) -> true ; Minor=none),
write_xml_element_to_log(animation_mode,[major/Major,minor/Minor]),
(b_or_z_mode, b_machine_name(Main)
-> findall(Key/Nr,b_machine_statistics(Key,Nr),BMachStats),
(b_get_main_filename(MainFile) -> get_tail_filename(MainFile,TailFile) ; TailFile = unknown),
write_xml_element_to_log(b_machine_statistics,[machine_name/Main, tail_filename/TailFile|BMachStats])
; true).
Calls:
Name: true |
|
Name: write_xml_element_to_log/2 |
Module: foo_error |
Name: =/2 |
|
Name: get_tail_filename/2 |
Module: tools |
Name: b_get_main_filename/1 |
Module: bmachine |
Name: ->/3 |
|
Name: findall/3 |
|
Name: b_machine_name/1 |
Module: bmachine |
Name: b_or_z_mode |
Module: foo_error |
Name: animation_minor_mode/1 |
Module: foo_error |
Name: animation_mode/1 |
Module: foo_error |
Called:
Name: cli_start_animation/1 |
Module: prob_cli |
zmq_delayed_option(coverage(_)).
zmq_delayed_option(expect_error(_)).
zmq_delayed_option(expect_error_pos(_,_,_)).
zmq_delayed_option(optional_error(_)).
zmq_delayed_option(statistics).
zmq_delayed_option(set_searchscope(_)).
zmq_delayed_option(no_invariant_violations). % not supported yet
Called:
Name: zmq_set_option/1 |
Module: prob_cli |
zmq_get_important_options(Options) :- findall(O, (option(O), zmq_important_option(O)), Options),
debug_println(20,transferring_zmq_options_to_workers(Options)).
Calls:
Name: debug_println/2 |
Module: foo_error |
Name: findall/3 |
Called:
Name: zmq_start_master/2 |
Module: prob_cli |
Module: prob_cli |
zmq_get_initialisation_term(Term) :-
(animation_mode(b) ; animation_mode(csp_and_b)), % CSP file not yet added when ZMQ master starts working
\+ animation_minor_mode(eventb),
option(add_csp_guide(CspGuide)),
!, % Classical B + CSP
debug_println(20,'ZMQ: Transferring CSP || B model'),
full_b_machine(Machine),
% TO DO: extract CSP Term rather than file name: will not work for distribution on other file-systems
zmq_get_important_options(Options),
Term = classical_b_with_csp(Machine,CspGuide,Options).
zmq_get_initialisation_term(Term) :-
debug_println(20,'Generating ZMQ Worker Initialisation'),
animation_mode(b), \+ animation_minor_mode(eventb), !, % Classical B
debug_println(20,'ZMQ: Transferring Classical-B model'),
full_b_machine(Machine),
zmq_get_important_options(Options),
Term = classical_b(Machine,Options).
zmq_get_initialisation_term(Term) :-
animation_mode(b), animation_minor_mode(eventb), !, % Event-B
debug_println(20,'ZMQ: Transferring Event-B model'),
full_b_machine(Machine),
zmq_get_important_options(Options),
Term = eventb(Machine,Options).
zmq_get_initialisation_term(Term) :-
animation_mode(cspm),
loaded_main_file(MainCSPFile),!, % TO DO: pass CSP Prolog term rather than file name (for distribution)
zmq_get_important_options(Options),
debug_println(20,'ZMQ: Transferring CSP specification'),
Term = csp_specification(MainCSPFile,Options).
zmq_get_initialisation_term(_Term) :-
\+ real_error_occurred, % otherwise error occured while loading
animation_mode(Mode),
add_internal_error('Unsupported formalism for ZMQ', Mode),
fail.
zmq_get_initialisation_term(filename(FN)) :-
loaded_main_file(FN).
Calls:
Name: loaded_main_file/1 |
Module: prob_cli |
Name: fail |
|
Name: add_internal_error/2 |
Module: foo_error |
Name: animation_mode/1 |
Module: foo_error |
Name: real_error_occurred |
Module: foo_error |
Name: not/1 |
|
Name: =/2 |
|
Name: debug_println/2 |
Module: foo_error |
Module: prob_cli | |
Name: ! |
|
Name: full_b_machine/1 |
Module: bmachine |
Name: animation_minor_mode/1 |
Module: foo_error |
Name: option/1 |
dynamic predicate |
Called:
Name: zmq_start_master/2 |
Module: prob_cli |
zmq_important_option(coverage(_)).
zmq_important_option(expect_error(_)).
zmq_important_option(optional_error(_)).
zmq_important_option(file_info).
zmq_important_option(log(_)).
zmq_important_option(print_version(_)).
zmq_important_option(profiling_on).
zmq_important_option(set_card(_,_)).
zmq_important_option(set_pref(_,_)).
zmq_important_option(set_preference_group(_,_)).
zmq_important_option(verbose).
zmq_important_option(statistics).
zmq_important_option(csv_table_command(_,_,_,_)).
zmq_important_option(very_verbose).
zmq_important_option(set_searchscope(_)).
zmq_important_option(no_invariant_violations).
zmq_set_important_options(Options) :- debug_println(20,setting_zmq_options(Options)),
maplist(prob_cli:zmq_set_option,Options).
Calls:
Name: maplist/2 |
Module: foo_error |
Name: debug_println/2 |
Module: foo_error |
Called:
Name: zmq_worker_load_model/1 |
Module: prob_cli |
zmq_set_option(file_info) :- !, file_info.
zmq_set_option(log(F)) :- !,
generate_time_stamp(Datime,NOW),
cli_start_logging(F,ascii,NOW,Datime,[zmq_worker]).
zmq_set_option(print_version(V)) :- !, print_version(V).
zmq_set_option(profiling_on) :- !, profiling_on.
zmq_set_option(set_card(Set,V)) :- !,
convert_cli_arg(V,Value),
set_user_defined_scope(Set,Value).
zmq_set_option(set_pref(P,V)) :- !, set_pref(P,V).
zmq_set_option(set_preference_group(P,V)) :- !, set_preference_group(P,V).
zmq_set_option(verbose) :- !, verbose.
zmq_set_option(very_verbose) :- !, very_verbose.
zmq_set_option(O) :- zmq_delayed_option(O),!, assert_option(O). % DO IT LATER
zmq_set_option(O) :- add_internal_error('Unsupported option for ZMQ worker: ',zmq_set_option(O)).
Calls:
Name: add_internal_error/2 |
Module: foo_error |
Name: assert_option/1 |
Module: prob_cli |
Name: ! |
|
Name: zmq_delayed_option/1 |
Module: prob_cli |
Name: very_verbose/0 |
Module: prob_cli |
Name: verbose/0 |
Module: prob_cli |
Name: set_preference_group/2 |
Module: foo_error |
Name: set_pref/2 |
Module: prob_cli |
Name: set_user_defined_scope/2 |
Module: b_global_sets |
Name: convert_cli_arg/2 |
Module: tools_strings |
Name: profiling_on/0 |
Module: prob_cli |
Name: print_version/1 |
Module: prob_cli |
Name: cli_start_logging/5 |
Module: prob_cli |
Name: generate_time_stamp/2 |
Module: prob_cli |
Name: file_info/0 |
Module: prob_cli |
zmq_start_animation :-
prob2_interface:start_animation,
if_option_set(set_goal(GOAL),
cli_set_goal(GOAL)), % not used yet
if_option_set(set_searchscope(SCOPE),
cli_set_searchscope(SCOPE)),
cli_computeOperations(_).
Calls:
Name: cli_computeOperations/1 |
Module: prob_cli |
Name: if_option_set/2 |
Module: prob_cli |
Name: start_animation/0 |
Module: prob2_interface |
Called:
Name: zmq_worker_load_model/1 |
Module: prob_cli |
zmq_start_master(invariant,Identifier) :-
start_animation_without_computing,
zmq_get_initialisation_term(InitTerm),
(option(strict_raise_error) -> Strict = 1 ; Strict = 0),
get_preference(port, PortStart),
get_preference(max_states, Max),
get_preference(ip, IP),
get_preference(logdir, LogDir),
get_preference(tmpdir, TmpDir),
get_preference(hash_cycle, HashCycle),
atom_concat(LogDir, '/distb-', ATmp),
atom_concat(ATmp, Identifier, Logfile),
atom_concat(TmpDir, '/db-distb-', TTmp),
atom_concat(TTmp, Identifier, TmpDir2),
start_master(InitTerm,Max,PortStart,Strict,IP,Logfile,TmpDir2,HashCycle),
halt.
zmq_start_master(assertion,Identifier) :-
get_preference(port, PortStart),
get_preference(logdir, LogDir),
get_preference(ip, IP),
get_preference(tmpdir, TmpDir),
get_preference(hash_cycle, HashCycle),
atom_concat(LogDir, '/distb-', ATmp),
atom_concat(ATmp, Identifier, Logfile),
atom_concat(TmpDir, '/db-distb-', TTmp),
atom_concat(TTmp, Identifier, TmpDir2),
current_state_corresponds_to_setup_constants_b_machine,
animation_mode(b),
full_b_machine(Machine),
b_get_assertions(_,static,SAss),
b_get_assertions(_,dynamic,DAss),
append(SAss,DAss,Ass),
count_assertions(Ass,0,N),
assertz(master:assertion_count(N)),
current_expression(_,State1),
specfile:state_corresponds_to_set_up_constants(State1,State),
zmq_get_important_options(Options),
(option(strict_raise_error) -> Strict = 1 ; Strict = 0),
%start_master(assertions(classical_b(Machine,Options),State,Ass),2,-1,PortStart,0,Strict,IP,Logfile,TmpDir2),
start_master(assertions(classical_b(Machine,Options),State,Ass),2,PortStart,Strict,IP,Logfile,TmpDir2,HashCycle),
halt.
Calls:
Name: halt |
|
Name: start_master/8 |
Module: zmq/master/master |
Name: =/2 |
|
Name: option/1 |
dynamic predicate |
Name: ->/3 |
|
Module: prob_cli | |
Module: specfile | |
Name: current_expression/2 |
Module: state_space |
Name: assertz/1 |
|
Name: count_assertions/3 |
Module: prob_cli |
Name: append/3 |
|
Name: b_get_assertions/3 |
Module: bmachine |
Name: full_b_machine/1 |
Module: bmachine |
Name: animation_mode/1 |
Module: foo_error |
Name: current_state_corresponds_to_setup_constants_b_machine/0 |
Module: state_space |
Name: atom_concat/3 |
|
Name: get_preference/2 |
Module: foo_error |
Module: prob_cli | |
Module: prob_cli |
zmq_start_worker(Identifier, NOW) :-
get_preference(port, Port),
get_preference(logdir, LogDir),
get_preference(tmpdir, TmpDir),
get_preference(proxynumber, ProxyNumber),
/* TODO: ensure directory exists (pk, 09.01.2018) */
atom_concat(LogDir, '/worker-', ATmp),
atom_concat(ATmp, Identifier, Logfile),
% TODO: tmp dir currently not used
atom_concat(TmpDir, '/db-worker-', TTmp),
atom_concat(TTmp, Identifier, TmpDir2),
start_worker(Port,ProxyNumber,Logfile,TmpDir2,zmq_worker_load_model),
formatsilent('ZMQ worker finished (Port:~w)~n',[Port]),
cli_process_loaded_file_afer_start_animation(NOW),
println_silent('Exiting probcli worker'),
halt_prob(NOW,0).
Calls:
Name: halt_prob/2 |
Module: prob_cli |
Name: println_silent/1 |
Module: foo_error |
Module: prob_cli | |
Name: formatsilent/2 |
Module: foo_error |
Name: start_worker/5 |
Module: zmq/worker/worker |
Name: atom_concat/3 |
|
Name: get_preference/2 |
Module: foo_error |
zmq_worker_load_model(classical_b(Machine,Options)) :- !,
debug_println(20,'ZMQ WORKER: Loading classical B model'),
zmq_set_important_options(Options),
bmachine:b_machine_reset, bmachine:assert_main_machine(Machine),
set_animation_mode(b),
zmq_start_animation.
zmq_worker_load_model(classical_b_with_csp(Machine,CspGuide,Options)) :- !,
debug_println(20,'ZMQ WORKER: Loading CSP || B model'),
zmq_set_important_options(Options),
bmachine:b_machine_reset, bmachine:assert_main_machine(Machine),
set_animation_mode(b),
prob2_interface:start_animation,
tcltk_add_csp_file(CspGuide), % TO DO: use CSP Prolog term rather than filename <----------------
zmq_start_animation.
zmq_worker_load_model(eventb(Machine,Options)) :- !,
print(loading_eventb(Options)),nl,
zmq_set_important_options(Options),
bmachine:b_machine_reset, bmachine:assert_main_machine(Machine),
set_animation_mode(b), set_animation_minor_mode(eventb),
zmq_start_animation.
zmq_worker_load_model(csp_specification(CSPFile,Options)) :-
zmq_set_important_options(Options),
load_cspm_spec_from_cspm_file(CSPFile), % TO DO: pass CSP Prolog term rather than filename
zmq_start_animation.
zmq_worker_load_model(filename(FN)) :- !,
printsilent('loading file by filename\n'),flush_output,
( is_eventb_b(FN) ->
eclipse_interface:load_eventb_file(FN)
;
bmachine:b_load_machine_probfile(FN)),
zmq_start_animation.
zmq_worker_load_model(assertions(Machine,State,Assertions)) :- !,
assertz(assertion_counter(-1)),
println_silent(loaded_model_for_assertion_checking),
zmq_worker_load_model(Machine),
assertz(worker:assertion_state(State)),
make_assertionwps(Assertions).
zmq_worker_load_model(Other) :-
add_internal_error('ZMQ worker: Unexpected machine description', zmq_worker_load_model(Other)),
fail.
Calls:
Name: fail |
|
Name: add_internal_error/2 |
Module: foo_error |
Name: make_assertionwps/1 |
Module: prob_cli |
Name: assertz/1 |
|
Name: RECURSIVE_CALL/1 |
Module: prob_cli |
Name: println_silent/1 |
Module: foo_error |
Name: ! |
|
Name: zmq_start_animation/0 |
Module: prob_cli |
Module: bmachine | |
Name: load_eventb_file/1 |
Module: eclipse_interface |
Name: is_eventb_b/1 |
Module: prob_cli |
Name: ->/3 |
|
Name: flush_output |
|
Name: printsilent/1 |
Module: foo_error |
Module: prob2_interface | |
Module: prob_cli | |
Name: set_animation_minor_mode/1 |
Module: foo_error |
Name: set_animation_mode/1 |
Module: foo_error |
Name: assert_main_machine/1 |
Module: bmachine |
Name: b_machine_reset/0 |
Module: bmachine |
Name: nl |
|
Name: print/1 |
|
Name: tcltk_add_csp_file/1 |
Module: foo_error |
Name: start_animation/0 |
Module: prob2_interface |
Name: debug_println/2 |
Module: foo_error |