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...?)