I'm trying to create a weighted graph using the built-in predicate "vertices_edges_to_wgraph" (from the wgraphs library) which looks like this:

vertices_edges_to_wgraph(+Vertices,+Edges,-Wgraph)

and I keep running into an error.

Correct me if I'm wrong:

Weighted graphs in prolog are represented as (for example) node1-[node2-10] where 10 is the weight between node1 and node2.

I don't really know what the syntax of the list of edges should be for the predicate. I've tried [node2-weight] (with a corresponding list of first-vertices in the "vertices" list), and I've tried [node1-[node2-weight] and [node1-node2] (no weight) and more.

All of these give me the same error:

"Instantiation error in in argument 1 of keysort/2".

The documentation for keysort is making me believe that the syntax should be on the form "key-value", which in my case would be node-weight (?)

I'm not sure if my syntax issues are causing this error, but if someone could explain the syntax I'll gladly figure the rest out on my own.

(Side question: where can I find ANY syntax information on sicstus...?)

link|improve this question

Your assumptions seem correct to me. Did you tried to trace your program? What call failed? – chac Jan 5 at 0:41
@chac Yes i traced. It was the call to "vertices_edges_to_wgraph" that caused it. Are you saying that the list of edges should be node-weight? – Keyser Jan 5 at 11:54
vertices should be optional (just needed for unconnected vertices), so edges should be something like [a-[b-1,c-2],b-[c-1,d-0.4]] – chac Jan 5 at 14:06
@chac Then what will the output be? I thought what you just described was a wgraph in prolog? I've heard that the predicate can leave out vertices though. That makes sense. Still not working btw... – Keyser Jan 6 at 14:40
feedback

1 Answer

up vote 0 down vote accepted

I solved it. My instructions (from the school) for this lab told me the syntax for graphs was as I described before (with brackets) but the solution was to use parentheses instead of brackets.

So I sent a list of edges to "vertices_edges_to_wgraph" where an edge was represented as "p1-(p2-100)" (the vertices list is only needed if you have vertices that doesn't have edges).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.