summaryrefslogtreecommitdiff
path: root/prolog/problems/world_data/flows_2/en.py
diff options
context:
space:
mode:
authorMartin Možina <martin.mozina@fri.uni-lj.si>2016-10-25 11:44:37 +0200
committerMartin Možina <martin.mozina@fri.uni-lj.si>2016-10-25 11:44:37 +0200
commit656c66097e806b4c53646ea1fff3d8615426d304 (patch)
tree172d4cccd187380bfdc81df3f195f5304d9f4d34 /prolog/problems/world_data/flows_2/en.py
parent0bfa95be7046b101a00f83f082260b5d0e007159 (diff)
parent9d662ae9b7a84b3826e91d2af17f251daaabcd79 (diff)
Merge branch 'master' of 192.168.15.97:codeq-problems
Diffstat (limited to 'prolog/problems/world_data/flows_2/en.py')
-rw-r--r--prolog/problems/world_data/flows_2/en.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/prolog/problems/world_data/flows_2/en.py b/prolog/problems/world_data/flows_2/en.py
new file mode 100644
index 0000000..f108001
--- /dev/null
+++ b/prolog/problems/world_data/flows_2/en.py
@@ -0,0 +1,20 @@
+name = 'flows/2'
+slug = ''
+
+description = '''\
+<p><code>flows(X, Y)</code>: the river <code>X</code> flows to sea <code>Y</code>.
+The predicate should follow the flow from <code>X</code> through different rivers
+until it reaches a sea - for example, Drina flows into Save, which flows into Donau,
+ending in the Black Sea:</p>
+<pre>
+?- flows('Drina', Y).
+ Y = 'Black Sea'.
+</pre>
+<p>River data is given by the predicate</p>
+<pre>
+river(Name, FlowsToRiver, FlowsToLake, FlowsToSea, Length, Area,
+ SourceLat, SourceLon, SourceElevation, MouthLat, MouthLon).
+</pre>
+'''
+
+hint = {}