File: SolComplete.md

package info (click to toggle)
curry-tools 1.0.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,492 kB
  • ctags: 121
  • sloc: makefile: 470; sh: 421
file content (15 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Solution completeness analysis
------------------------------

This analysis assigns to a function a flag which is `True` if this function
is operationally complete, i.e., does not call (explicitly or implicitly)
a rigid function.

For instance, the operation

    not True  = False
    not False = True

is `solution complete`, whereas the prelude operation `putChar`
is not solution complete but may suspend if it is called with
a free variable as argument.