How to resolve the algorithm Amb step by step in the Picat programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Amb step by step in the Picat programming language

Table of Contents

Problem Statement

Define and give an example of the Amb operator. The Amb operator (short for "ambiguous") expresses nondeterminism. This doesn't refer to randomness (as in "nondeterministic universe") but is closely related to the term as it is used in automata theory ("non-deterministic finite automaton"). The Amb operator takes a variable number of expressions (or values if that's simpler in the language) and yields a correct one which will satisfy a constraint in some future computation, thereby avoiding failure. Problems whose solution the Amb operator naturally expresses can be approached with other tools, such as explicit nested iterations over data sets, or with pattern matching. By contrast, the Amb operator appears integrated into the language. Invocations of Amb are not wrapped in any visible loops or other search patterns; they appear to be independent. Essentially Amb(x, y, z) splits the computation into three possible futures: a future in which the value x is yielded, a future in which the value y is yielded and a future in which the value z is yielded. The future which leads to a successful subsequent computation is chosen. The other "parallel universes" somehow go away. Amb called with no arguments fails. For simplicity, one of the domain values usable with Amb may denote failure, if that is convenient. For instance, it is convenient if a Boolean false denotes failure, so that Amb(false) fails, and thus constraints can be expressed using Boolean expressions like Amb(x * y == 8) which unless x and y add to four. A pseudo-code program which satisfies this constraint might look like: The output is 2 4 because Amb(1, 2, 3) correctly chooses the future in which x has value 2, Amb(7, 6, 4, 5) chooses 4 and consequently Amb(x * y = 8) produces a success. Alternatively, failure could be represented using strictly Amb(): Or else Amb could take the form of two operators or functions: one for producing values and one for enforcing constraints: where Ambassert behaves like Amb() if the Boolean expression is false, otherwise it allows the future computation to take place, without yielding any value. The task is to somehow implement Amb, and demonstrate it with a program which chooses one word from each of the following four sets of character strings to generate a four-word sentence: The constraint to be satisfied is that the last character of each word (other than the last) is the same as the first character of its successor. The only successful sentence is "that thing grows slowly"; other combinations do not satisfy the constraint and thus fail. The goal of this task isn't to simply process the four lists of words with explicit, deterministic program flow such as nested iteration, to trivially demonstrate the correct output. The goal is to implement the Amb operator, or a facsimile thereof that is possible within the language limitations.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Amb step by step in the Picat programming language

Source code in the picat programming language

go ?=>
  % select which version of amb/2 and joins/2 to test
  member(Amb,[amb,amb2]),
  member(Joins,[joins,join2]),
  println([amb=Amb,joins=Joins]),
  test_amb(amb,joins, Word1,Word2,Word3,Word4),
  println([Word1, Word2, Word3, Word4]),
  nl,
  fail, % get other solutions
  nl.
go => true.

% Test a combination of amb and joins
test_amb(Amb,Joins, Word1,Word2,Word3,Word4) => 
  call(Amb, Word1, ["the","that","a"]),
  call(Amb, Word2, ["frog","elephant","thing"]),
  call(Amb, Word3, ["walked","treaded","grows"]),
  call(Amb, Word4, ["slowly","quickly"]),
  call(Joins, Word1, Word2),
  call(Joins, Word2, Word3),
  call(Joins, Word3, Word4).

% Based on the Prolog solution.
amb(E, [E|_]).
amb(E, [_|ES]) :- amb(E, ES).
 
joins(Left, Right) =>
  append(_, [T], Left),
  append([R], _, Right),
  ( T != R -> amb(_, [])
  ; true ).
 
% Another approach, using member/2 for
% generating the words.
amb2([],[]).
amb2(Word,Words) :- member(Word,Words).

joins2(Word1,Word2) :- Word1.last() = Word2.first().

  

You may also check:How to resolve the algorithm Determine if a string is squeezable step by step in the BASIC programming language
You may also check:How to resolve the algorithm I before E except after C step by step in the Racket programming language
You may also check:How to resolve the algorithm Recaman's sequence step by step in the MAD programming language
You may also check:How to resolve the algorithm Queue/Definition step by step in the 11l programming language
You may also check:How to resolve the algorithm Range extraction step by step in the Action! programming language