1 % (c) 2009-2025 Lehrstuhl fuer Softwaretechnik und Programmiersprachen,
2 % Heinrich Heine Universitaet Duesseldorf
3 % This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
4
5 :- module(xtl_interface, [open_xtl_file/1,
6 xtl_transition/3, xtl_transition/4,
7 xtl_transition_with_symbolic/3,
8 xtl_symbolic_transition_potentially_enabled/2,
9 xtl_transition_parameters/2, get_xtl_paras_as_identifiers/2,
10 xtl_property/2, xtl_invariant_violated/1,
11 xtl_nr_state_properties/1,
12 xtl_goal_found/1,
13 xtl_animation_function_result/2, xtl_animation_image/2,
14 xtl_heuristic_function_active/0,
15 xtl_heuristic_function_result/2,
16 xtl_animation_image_click_transition/6,
17 xtl_animation_image_right_click_transition/4,
18 xtl_get_definition_string/2,
19 xtl_game_info/3,
20
21 xtl_search_scope/1, xtl_set_search_scope/1,
22 xtl_main_file_name/1,
23
24 csp_initialisation_for_b/1,
25 csp_transition_for_b/5,
26 generate_b_operationargs_from_csp/2,
27
28 %open_promela_file/1, promela_transition/3, promela_property/2,
29 %open_smv_file/1, smv_transition/3, smv_property/2, % SMV mode broken
30
31 open_cspm_file/1, last_opened_cspm_file/1,
32 cspm_transition/3,
33 cspm_property/2,
34 set_cspm_main_process/1,
35 reset_xtl_interface/0]).
36
37
38 :- use_module(module_information).
39 :- module_info(group,animator).
40 :- module_info(description,'Provides an interface to the non-B animators depending on animation-mode.').
41
42 /* Typically the XTL specifications reside in a .P file with the following predicates
43 start/1 -> defining the initial states
44 trans/3 -> defining the transitions between states transition(Action, StateBefore, StateAfter)
45 prop/2 -> defining properties of states
46
47 start/2, trans/4: same as start/1 and trans/3, but last argument allows to provide a list of
48 additional transition infos (stored in state_space), e.g. [description('Desc')]
49
50 For CSP specifications the interpreter is integrated into ProB
51
52 */
53
54 /* --------------- XTL ----------------- */
55 :- volatile prop/2, trans/3, trans/4, trans_prop/2, start/1, start/2, symb_trans/3, symb_trans_enabled/2.
56 :- volatile nr_state_properties/1, animation_function_result/2, animation_image/2.
57 :- volatile animation_image_click_transition/6, animation_image_right_click_transition/3.
58 :- volatile animation_image_right_click_transition/4.
59 :- volatile heuristic_function_active/0, heuristic_function_result/2.
60 :- volatile prob_pragma_string/2, prob_game_info/3.
61 :- volatile xtl_search_scope/1, xtl_main_file_name/1.
62 :- volatile disprover_po/6.
63 :- dynamic prop/2.
64 :- dynamic trans/3, trans/4.
65 :- dynamic trans_prop/2.
66 :- dynamic symb_trans/3, symb_trans_enabled/2.
67 :- dynamic start/1, start/2.
68 :- dynamic nr_state_properties/1.
69 :- dynamic animation_function_result/2.
70 :- dynamic animation_image/2.
71 :- dynamic animation_image_click_transition/6, animation_image_right_click_transition/3.
72 :- dynamic animation_image_right_click_transition/4.
73 :- dynamic heuristic_function_active/0.
74 :- dynamic heuristic_function_result/2.
75 :- dynamic prob_pragma_string/2, prob_game_info/3.
76 :- dynamic xtl_search_scope/1, xtl_main_file_name/1.
77 :- dynamic disprover_po/6.
78
79
80 % the following imports are required so that XTL .P files can make use of these functions:
81 :- use_module(library(lists)).
82 :- use_module(library(between)).
83 :- use_module(library(ordsets)).
84 :- use_module(library(samsort)).
85 :- use_module(library(random)).
86 :- use_module(library(avl)).
87 :- use_module(library(heaps)).
88 :- use_module(tools_portability, [exists_source/1]).
89 :- if(exists_source(library(logarr))).
90 :- use_module(library(logarr)). % not yet available in SWI Prolog
91 :- endif.
92
93 % ProB utilities (which can also be used by XTL code)
94 :- use_module(error_manager).
95 :- use_module(preferences,[get_preference/2]).
96 :- use_module(debug).
97 :- use_module(tools).
98
99 :- if(\+ current_prolog_flag(dialect, sicstus)).
100 abolish_all([]).
101 abolish_all([Pred|Preds]) :-
102 abolish(Pred),
103 abolish_all(Preds).
104 :- else.
105 abolish_all(Preds) :-
106 abolish(Preds, [force(true),tree(true)]).
107 :- endif.
108
109 open_xtl_file(File) :-
110 abolish_all([prop/2, trans/3, trans/4, trans_prop/2, symb_trans/3, symb_trans_enabled/2, start/1, start/2, nr_state_properties/1]),
111 abolish_all([animation_image/2,animation_function_result/2,
112 animation_image_click_transition/6,animation_image_right_click_transition/3,
113 animation_image_right_click_transition/4,
114 heuristic_function_active/0,
115 prob_pragma_string/2,
116 prob_game_info/3]),
117 abolish_all([xtl_search_scope/1, xtl_main_file_name/1]),
118 abolish_all([disprover_po/6]),
119 assertz((prop(_,_) :- fail)),
120 assertz((trans(_,_,_) :- fail)),
121 assertz((trans(_,_,_,_) :- fail)),
122 assertz((trans_prop(_,_) :- fail)),
123 assertz((symb_trans(_,_,_) :- fail)),
124 assertz((symb_trans_enabled(_,_) :- fail)),
125 assertz((start(_) :- fail)),
126 assertz((start(_,_) :- fail)),
127 assertz((nr_state_properties(_) :- fail)),
128 assertz((heuristic_function_active :- fail)),
129 assertz((animation_image(_,_) :- fail)),
130 assertz((animation_function_result(_,_) :- fail)),
131 assertz((animation_image_click_transition(_,_,_,_,_,_) :- fail)),
132 assertz((animation_image_right_click_transition(_,_,_) :- fail)),
133 assertz((animation_image_right_click_transition(_,_,_,_) :- fail)),
134 assertz((prob_pragma_string(_,_) :- fail)),
135 assertz((prob_game_info(_,_,_) :- fail)),
136 assertz((xtl_search_scope(_) :- fail)),
137 assertz(xtl_main_file_name(File)),
138 assertz((disprover_po(_,_,_,_,_,_) :- fail)), % to detect sequent_prover mode
139
140 debug_println(9,tcltk_open_xtl_file(File)),
141 consult_without_redefine_warning(File),
142 check_is_po_file(File),
143 debug_println(9,new_xtl_file(File)),
144 (xtl_get_definition_string('SCOPE',ScopePredStr) -> xtl_set_search_scope(ScopePredStr) ; true).
145
146 xtl_transition(State,Operation,NewState) :-
147 xtl_transition(State,Operation,NewState,_).
148 xtl_transition(State,Operation,NewState,Infos) :-
149 (get_preference(xtl_safe_mode, true)
150 -> xtl_transition_safe(State,Operation,NewState,Infos)
151 ; xtl_transition_unsafe(State,Operation,NewState,Infos)).
152 xtl_transition_unsafe(root,start_xtl_system,NewState,Infos) :- get_start(NewState,Infos).
153 xtl_transition_unsafe(State,Operation,NewState,Infos) :-
154 State \= root, get_trans(Operation,State,NewState,Infos).
155 xtl_transition_safe(State,Operation,NewState,Infos) :-
156 (ground(State) -> true ; add_error(xtl,'Non-ground XTL state:',State),fail),
157 (State=root
158 -> Operation=start_xtl_system, get_start(NewState,Infos)
159 ; get_trans(Operation,State,NewState,Infos),
160 ((atom(Operation) ; compound(Operation)) -> true ; add_error(xtl,'Illegal XTL operation:',Operation),fail),
161 (ground(Operation) -> true ; add_error(xtl,'Non-ground XTL operation:',Operation),fail)
162 ),
163 (ground(NewState) -> true ; add_error(xtl,'Non-ground XTL destination state:',NewState), fail).
164
165 xtl_transition_with_symbolic(State,Operation,NewState) :-
166 ground(Operation),
167 symb_trans(Operation,State,NewState), !,
168 check_trans_params(Operation).
169 xtl_transition_with_symbolic(State,Operation,NewState) :-
170 xtl_transition(State,Operation,NewState).
171
172 get_start(State,[]) :- start(State).
173 get_start(State,Infos) :- start(State,Infos),
174 (is_list(Infos) -> true ; add_error(xtl,'Transition info is not a list:',Infos), fail).
175 get_start(_,_) :- \+ start(_), \+start(_,_), add_error(xtl,'No XTL start state defined'), fail.
176
177 get_trans(Operation,State,NewState,[]) :- trans(Operation,State,NewState), check_trans_params(Operation).
178 get_trans(Operation,State,NewState,Infos) :- trans(Operation,State,NewState,Infos),
179 (is_list(Infos) -> true ; add_error(xtl,'Transition info is not a list:',Infos), fail),
180 check_trans_params(Operation).
181
182 % check that number of specified parameters matches the arity of the transition term and
183 % that only one declaration of parameter names per name is provided
184 check_trans_params(_) :- \+ trans_prop(_,param_names(_)), !.
185 check_trans_params(OpTerm) :-
186 functor(OpTerm,Name,Ar),
187 (xtl_transition_parameters(Name,Paras)
188 -> length(Paras,NrP),
189 (Ar =:= NrP -> true ; add_error(xtl,'Number of specified parameter names does not match the arity of transition:',Name),fail)
190 ; true). % no params
191
192 xtl_transition_parameters(TransName,ParaNames) :-
193 trans_prop(TransName,param_names(ParaNames)),
194 (trans_prop(TransName,param_names(P2)), P2\=ParaNames
195 -> add_error(xtl,'Multiple parameter declarations for transition name:',TransName), fail
196 ; true).
197
198 get_xtl_paras_as_identifiers(OpName,ParaIds) :-
199 xtl_transition_parameters(OpName,ParaNames), !,
200 findall(b(identifier(Name),string,[]), member(Name,ParaNames), ParaIds).
201 get_xtl_paras_as_identifiers(_,[]).
202
203 xtl_symbolic_transition_potentially_enabled(TransName,State) :-
204 symb_trans_enabled(TransName,State).
205
206 xtl_property(State,Property) :-
207 (get_preference(xtl_safe_mode, true) -> xtl_property_safe(State,Property) ; xtl_property_unsafe(State,Property)).
208 xtl_property_unsafe(State,Property) :-
209 State \= root, get_prop(State,Property).
210 xtl_property_safe(State,Property) :-
211 State \= root,
212 get_prop(State,Property),
213 (ground(Property)-> true ; add_error(xtl,'Non-ground XTL property:',Property), fail).
214
215 get_prop(State,Property) :- if(prop(State,Property), true, Property='No XTL properties defined').
216
217 % special Property is unsafe; see is_xtl_error_state in model_checker.pl
218 % Note for XTL we do not use not_invariant_checked/1 facts
219 xtl_invariant_violated(State) :- xtl_property(State,unsafe).
220 xtl_goal_found(State) :- xtl_property(State,goal).
221
222 xtl_nr_state_properties(Nr) :- nr_state_properties(Nr).
223
224 xtl_animation_function_result(State,AnimationMatrix) :- State \= root,
225 animation_function_result(State,AnimationMatrix).
226
227 xtl_animation_image(Nr,PathToGif) :-
228 %on_exception(error(existence_error(_,_),_),
229 animation_image(Nr,PathToGif).
230
231 % return a transition template to execute for simple clicks (From=To) or drags
232 % OperationTemplate can either be the template of an operation to match or a list of such templates
233 % (the operations will then be executed in order)
234 xtl_animation_image_click_transition(FromX,FromY,ToX,ToY,OperationTemplate,Image) :-
235 animation_image_click_transition(FromX,FromY,ToX,ToY,OperationTemplate,Image).
236
237 xtl_animation_image_right_click_transition(X,Y,OperationTemplate,State) :-
238 animation_image_right_click_transition(X,Y,OperationTemplate,State).
239 xtl_animation_image_right_click_transition(X,Y,OperationTemplate,_) :-
240 animation_image_right_click_transition(X,Y,OperationTemplate).
241
242 xtl_heuristic_function_active :-
243 heuristic_function_active.
244 xtl_heuristic_function_result(State,int(IntegerVal)) :- State \= root,
245 heuristic_function_result(State,Res),
246 (Res=int(R) -> IntegerVal=R
247 ; number(Res) -> IntegerVal=Res
248 ; add_error(xtl_heuristic_function_result,'heuristic_function_result must be integer: ',Res),fail
249 ).
250
251 xtl_game_info(Key,State,Value) :- prob_game_info(Key,State,Value).
252 %xtl_game_over(State) :- prob_game_info('GAME_OVER',State,true).
253 %xtl_game_value(State,Value) :- prob_game_info('GAME_VALUE',State,Value).
254 %xtl_game_player(State,Player) :- prob_game_info('GAME_PLAYER',State,Player).
255
256
257 % way to mimic DEFINITION Strings in XTL mode, such as ASSERT_LTL
258 xtl_get_definition_string(Def_Name,DefString) :-
259 prob_pragma_string(N,S),
260 get_atom_string(N,Def_Name),
261 get_atom_string(S,DefString).
262
263 :- use_module(tools,[safe_atom_codes/2]).
264 get_atom_string(Atom,Res) :- atom(Atom),!,Res=Atom.
265 get_atom_string([H|T],Res) :- safe_atom_codes(Atom,[H|T]), !, Res=Atom. % transform "abc" into 'abc'
266 get_atom_string(R,R).
267
268 % set search_scope, restricting model checking to states which satisfy the SCOPE DEFINITION predicate
269 xtl_set_search_scope(Goal) :-
270 (predicate_property(xtl_search_scope(_),dynamic) % can be static if it is defined by the XTL spec
271 -> bmachine:b_parse_machine_predicate(Goal,[prob_ids(visible),variables,external_library(all_available_libraries)],TypedPred),
272 retractall(xtl_search_scope(_)),
273 assertz(xtl_search_scope(TypedPred))
274 ; add_warning(xtl_set_search_scope,'Failed to set XTL search scope (xtl_search_scope is already defined): ',Goal)).
275
276 consult_without_redefine_warning(File) :-
277 get_set_optional_prolog_flag(redefine_warnings, Old, off),
278 get_set_optional_prolog_flag(single_var_warnings, Old2, off),
279 (catch(my_compile(File),
280 error(existence_error(_,_),_),
281 add_error_fail(xtl,'XTL File does not exist:',File))
282 -> OK=true ; OK=false),
283 get_set_optional_prolog_flag(redefine_warnings, _, Old),
284 get_set_optional_prolog_flag(single_var_warnings, _, Old2),
285 OK=true.
286
287 my_compile(F) :- %get_preference(user_is_an_expert_with_accessto_source_distribution,true),
288 !, % it seems it is ok to call compile also in probcli binary; it may do consult though
289 compile(F).
290 my_compile(F) :- consult(F).
291
292 :- use_module(seqproversrc(sequent_prover),[initialise_for_po_file/1]).
293 check_is_po_file(File) :-
294 disprover_po(_,_,_,_,_,_), !, % proof obligation facts generated by the ProB disprover: disprover_po/6
295 specfile:set_animation_minor_mode(sequent_prover),
296 initialise_for_po_file(File).
297 check_is_po_file(_).
298
299 /* --------------- Promela ----------------- */
300
301 %:- use_module('promela/h_int').
302
303 /* --------------- SMV ----------------- */
304
305 % :- use_module('smv/smv_trans').
306
307
308 /* --------------- CSP-M ----------------- */
309
310 :- use_module(probcspsrc(haskell_csp),[parse_and_load_cspm_file/1,
311 cspm_trans_enum/3,
312 animatable_process/1, animatable_process_without_arguments/1,
313 get_symbol_span/2,force_evaluate_argument/2,normalise_cspm_state/2]).
314 :- use_module(probcspsrc(haskell_csp_analyzer),[cspPrintCompiled/2]).
315 :- use_module(probsrc(translate),[translate_cspm_state/2]).
316
317 :- dynamic last_opened_cspm_file/1. % useful for csp_and_b mode
318
319 open_cspm_file(File) :-
320 retractall(last_opened_cspm_file(_)),
321 debug_println(15,open_cspm_file(File)), flush_output(user_output),
322 parse_and_load_cspm_file(File),
323 assertz(last_opened_cspm_file(File)).
324
325 :- dynamic cspm_main_process/1.
326 cspm_main_process('MAIN').
327 set_cspm_main_process(M) :-
328 retractall(cspm_main_process(_)),
329 assertz(cspm_main_process(M)).
330
331 reset_xtl_interface :- retractall(last_opened_cspm_file(_)),
332 reset_cspm_main_process.
333 reset_cspm_main_process :- set_cspm_main_process('MAIN').
334
335 :- use_module(eventhandling,[register_event_listener/3]).
336 :- register_event_listener(clear_specification,reset_xtl_interface,
337 'Reset XTL Interface.').
338
339 cspm_transition(root,start_cspm_MAIN,NormalisedNewState) :-
340 cspm_main_process(MAIN),
341 animatable_process_without_arguments(MAIN),
342 get_start_expr(MAIN,NewState),
343 normalise_cspm_state(NewState,NormalisedNewState).
344 cspm_transition(root,start_cspm(X),NormalisedNewState) :- cspm_main_process(MAIN),
345 (get_preference(cspm_animate_all_processes_without_arguments,true)
346 ; \+ animatable_process_without_arguments(MAIN)),
347 animatable_process_without_arguments(X),
348 X\=MAIN,
349 get_start_expr(X,NewState),
350 normalise_cspm_state(NewState,NormalisedNewState).
351 cspm_transition(root,start_cspm(X),NormalisedNewState) :- cspm_main_process(MAIN),
352 get_preference(cspm_animate_all_processes,true),
353 animatable_process(X),
354 X\=MAIN,
355 get_start_expr(X,NewState),
356 normalise_cspm_state(NewState,NormalisedNewState).
357 cspm_transition(root,io([V1],print,no_loc_info_available),root) :-
358 cspPrintCompiled(Expr,CompiledExpr), debug_println(9,cspPrintCompiled(Expr,CompiledExpr)),
359 nl, translate:print_csp_value(Expr),
360 print(' == '), nl, print(' '),
361 force_evaluate_argument(CompiledExpr,V1),
362 translate:print_csp_value(V1),nl.
363 cspm_transition(root,no_process_to_animate,root) :-
364 ( get_preference(cspm_animate_all_processes,true) ->
365 \+ animatable_process(_)
366 ; \+ animatable_process_without_arguments(_)).
367 cspm_transition(State,Action,NormalisedNewState) :- State \= root,
368 %print(comp),nl,
369 cspm_trans_enum(State,Action,NewState),
370 normalise_cspm_state(NewState,NormalisedNewState).
371 %(ActionS = io(V,Ch,_Span) -> Action = io(V,Ch) ; Action=ActionS).
372 %print(new(NewState)),nl. /* TO DO: Normalise */
373
374 cspm_property(State,Property) :-
375 translate_cspm_state(State,Property).
376
377 /* --------------- CSP ----------------- */
378
379
380 get_start_expr(Proc,val_of(Proc,Span)) :- get_symbol_span(Proc,Span).
381
382
383
384 csp_initialisation_for_b(NewState) :- cspm_main_process(MAIN),
385 (animatable_process_without_arguments(MAIN) -> get_start_expr(MAIN,NewState);
386 (animatable_process_without_arguments(X)
387 -> add_error(csp_transition_for_b,'No MAIN process in the CSP file! I am animating:',X),
388 NewState = val_of(X)
389 ; add_error(csp_transition_for_b,'No animatable process in the CSP file!'), NewState = stop)
390 ).
391
392 csp_transition_for_b(State,Ch,Args,Action,NewState) :- State \= root,
393 % print(cspm_trans_enum(State,Action,NewState)),nl,
394 cspm_trans_enum(State,Action,NewState), %% TO DO: delay enumeration until B operation has been setup ?
395 % print(cspm_trans_enum(Action,NewState)),nl,
396 decompose_event(Action,Ch,Args).
397 % print(b(Ch,BArgs)),nl.
398
399
400 /* needed: an any operation: map any operation<------------- */
401
402 decompose_event(io(V,Ch,_Src),Ch,V).
403 decompose_event(tau(S),tau(S),[]).
404 %% decompose_event(i(S),i(S),[]). %% deprecated
405 decompose_event(tick(S),tick(S),[]).
406
407 generate_b_operationargs_from_csp(V,BArgs) :- l_copy_args_to_b(V,BArgs).
408
409
410 l_copy_args_to_b(tail_in(X),[Y]) :- translate_and_normalise_arg_to_b(X,Y).
411 l_copy_args_to_b([],[]).
412 l_copy_args_to_b([HCSP|T],[HB|TB]) :-
413 copy_args_to_b(HCSP,HB),
414 l_copy_args_to_b(T,TB).
415
416 copy_args_to_b(dot(X),Y) :- !,translate_and_normalise_arg_to_b(X,Y). /* is this still required with the new eval ?? */
417 copy_args_to_b(in(X),Y) :- !,translate_and_normalise_arg_to_b(X,Y).
418 copy_args_to_b(out(X),Y) :- !,translate_and_normalise_arg_to_b(X,Y).
419 copy_args_to_b(X,Y) :- translate_and_normalise_arg_to_b(X,Y).
420
421 :- use_module(store,[normalise_value_for_var/4]).
422
423 translate_and_normalise_arg_to_b(CSP,BN) :- translate_arg_to_b(CSP,B), normalise_value_for_var(csp,true,B,BN).
424
425 :- use_module(tools,[print_message/1, convert_list_into_pairs/2]).
426 :- use_module(custom_explicit_sets,[construct_avl_from_lists/2]).
427
428 %translate_arg_to_b(X,Y) :- print(translate_arg_to_b(X,Y)),nl,fail.
429 translate_arg_to_b(X,X) :- var(X),!.
430 translate_arg_to_b(X,int(X)) :- number(X),!,print_message(converted_int(X)).
431 translate_arg_to_b(fd(N,S),fd(N,S)) :- !. /* copy B SET element across */
432 translate_arg_to_b(string(S),string(S)) :- !. /* copy B STRING element across */
433 translate_arg_to_b(int(N),int(N)) :- !.
434 translate_arg_to_b(true,pred_true /* bool_true */) :- !.
435 translate_arg_to_b(false,pred_false /* bool_false */) :- !.
436 translate_arg_to_b(global_set(N),global_set(N)) :- !.
437 translate_arg_to_b(freetype(N),freetype(N)) :- !.
438 translate_arg_to_b(avl_set(N),avl_set(N)) :- !.
439 translate_arg_to_b(closure(A,B,C),closure(A,B,C)) :- !.
440 translate_arg_to_b(closure(A,B,C,E),closure(A,B,C,E)) :- !.
441 translate_arg_to_b(setValue(S),R) :- !, translate_arg_to_b(S,R1),
442 construct_avl_from_lists(R1,R).
443 %sort(R1,R). % IS SORTING NECESSARY?; we could translate to AVL
444 translate_arg_to_b(list(L),R) :- !, translate_list_to_b(L,1,R1),
445 custom_explicit_sets:construct_avl_from_lists(R1,R).
446 translate_arg_to_b([],[]) :- !.
447 translate_arg_to_b([H|T],[TH|TT]) :- !,translate_arg_to_b(H,TH), translate_arg_to_b(T,TT).
448 translate_arg_to_b((H,T),(TH,TT)) :- !,translate_arg_to_b(H,TH), translate_arg_to_b(T,TT).
449 translate_arg_to_b(na_tuple(L),Res) :- !,l_translate_arg_to_b(L,TL),
450 convert_list_into_pairs(TL,Res).
451 translate_arg_to_b(Constant,BRep) :- translate_b_constant(Constant,BRep),!. /* clause necessary?? */
452 translate_arg_to_b(term(Constant),BRep) :- translate_b_constant(Constant,BRep),!.
453 % TO DO: treat floats/reals
454 translate_arg_to_b(term(N),term(N)) :- !.
455 translate_arg_to_b(DeferredSetEl,FD) :-
456 is_deferred_set_element_name(DeferredSetEl,FD),!.
457 translate_arg_to_b(X,string(X)) :- atomic(X),!. % if the identfier X is not known: translate it to a string
458 % TO DO: some static checking: if no operation has a STRING parameter type, then we can skip this clause and generate an error message straightaway
459 translate_arg_to_b(X,term(X)) :- add_error(translate_arg_to_b,'Unknown CSP datatype, cannot convert to B:',X).
460 /* extend for other types */
461
462 translate_list_to_b([],_,[]).
463 translate_list_to_b([H|T],Nr,[(int(Nr),TH)|TT]) :- translate_arg_to_b(H,TH),
464 N1 is Nr+1, translate_list_to_b(T,N1,TT).
465
466 l_translate_arg_to_b([],[]).
467 l_translate_arg_to_b([H|T],[TH|TT]) :- translate_arg_to_b(H,TH),
468 l_translate_arg_to_b(T,TT).
469
470 :- use_module(tools,[safe_atom_codes/2]).
471 :- use_module(self_check).
472 :- assert_must_succeed( (xtl_interface:is_deferred_set_element_name('Code1',R),R=fd(1,'Code')) ).
473 :- assert_must_fail( xtl_interface:is_deferred_set_element_name('CodeXX',_R) ).
474 is_deferred_set_element_name(DeferredSetEl,fd(Nr,Set)) :- atomic(DeferredSetEl),
475 ? b_global_sets:b_global_deferred_set(Set), atom_codes(Set,SetCodes),
476 append(SetCodes,NrCodes,DC),
477 safe_atom_codes(DeferredSetEl,DC),
478 catch(number_codes(Nr,NrCodes),_,fail).
479
480 :- use_module(b_global_sets,[b_global_set/1, all_elements_of_type/2]).
481
482 translate_b_constant(GS,BRep) :- nonvar(GS),b_global_set(GS),all_elements_of_type(GS,BRep),!.
483 translate_b_constant(Constant,BRep) :- nonvar(Constant),b_global_sets:lookup_global_constant(Constant,BRep),!.