
ordered_sum(+List, ?Sum)

   The list elements are ordered and their sum is Sum

Arguments
   List                List of integers or domain variables
   Sum                 Variable or integer

Type
   library(fd_global)

Description
    This constraint is declaratively equivalent to:

	ordered_sum(List, Sum) :-
	    ordered(=
    However, additional propagation is performed.

See Also
   ordered / 2, sumlist / 2
