I’m using:
SWI-Prolog version 9.3.21-34-gbfbbc23db
I want the code to:
build a clpBNR constraint at runtime
But what I’m getting is:
starting from a list, I don’t know how to handle variable identifiers in building the constraint term.
My code looks like this:
The user would give the application two inputs:
- a list of pairs of the form
[atom-atomOrVariable ...
, where the 1st member is an identifier name, and the potentially not grounded 2nd member is its value. This list is obtained from R at runtime. - a boolean expression using identifiers from (1), that I’d like to turn into a clpBNR constraint. The expression is typed by the user into an R GUI and sent to SWI.
%I am able to read a term from input and make a constraint...
read_constraint(Y):-
open('../read_constraint.txt', read, Str),
read_term(Str,Constraint,[variable_names(['X'=Y])]),
close(Str),
{Constraint}.
%... but I am having trouble building a suitable term from my input list
substitute_formula_([],[],F,F).
substitute_formula_([Name|Names],[Value|Values],F,S):-
select(Name,F,Value,F1),!,
substitute_formula_(Names,Values,F1,S).
substitute_formula(Row,Formula,Substituted):-
pairs_keys_values(Row,Names,Values),
substitute_formula_(Names,Values,Formula,Substituted).
Example
?- substitute_formula([potassium-P,glucose-130],[glucose,'>',120,and,potassium,'<',5.0],S).
S = [130, >, 120, and, P, <, 5.0].
Now here’s my problem: how do I build the constraint term from list S
to constrain P
? I am able to build a constraint starting from an atom such as 'X>1'
, but list S
contains variables. Do I need to get the variable names as atoms and use atomic_list_concat/2
? Or is there another strategy entirely ?
Thanks!