summaryrefslogtreecommitdiff
path: root/prolog/problems/clp_r/max_sum_2/en.py
blob: eeff4cdda7476086bc181a1c0d60e763c470773b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding=utf-8

name = 'max_sum/2'
slug = 'find maximal adjacent elements'

description = '''\
<p><code>max_sum(List, Max)</code>: <code>Max</code> is the maximal sum of two adjacent elements in <code>List</code>.</p>
<pre>
  ?- max_sum([4.5, 3.6, 1.2, 6.7], Max).
    Max = 8.1.
  ?- max_sum([1.1, 1.2, -12.3, 8.8], Max).
    Max = 2.3.
</pre>'''

hint = {}