- Source: Program synthesis
- Indonesia
- Hak asasi manusia
- Perang Dunia I
- Bawang prei
- Penghargaan Turing
- Program tenaga nuklir tiga tahap India
- NanoPutian
- Eniya Listiani
- Agama di Indonesia
- Abhidhamma Theravāda
- Program synthesis
- Synthesis
- Bayesian program synthesis
- Structural synthesis of programs
- Formal verification
- Speech synthesis
- Natural-language programming
- Automatic programming
- Subtractive synthesis
- GitHub Copilot
In computer science, program synthesis is the task to construct a program that provably satisfies a given high-level formal specification. In contrast to program verification, the program is to be constructed rather than given; however, both fields make use of formal proof techniques, and both comprise approaches of different degrees of automation. In contrast to automatic programming techniques, specifications in program synthesis are usually non-algorithmic statements in an appropriate logical calculus.
The primary application of program synthesis is to relieve the programmer of the burden of writing correct, efficient code that satisfies a specification. However, program synthesis also has applications to superoptimization and inference of loop invariants.
Origin
During the Summer Institute of Symbolic Logic at Cornell University in 1957, Alonzo Church defined the problem to synthesize a circuit from mathematical requirements. Even though the work only refers to circuits and not programs, the work is considered to be one of the earliest descriptions of program synthesis and some researchers refer to program synthesis as "Church's Problem". In the 1960s, a similar idea for an "automatic programmer" was explored by researchers in artificial intelligence.
Since then, various research communities considered the problem of program synthesis. Notable works include the 1969 automata-theoretic approach by Büchi and Landweber, and the works by Manna and Waldinger (c. 1980). The development of modern high-level programming languages can also be understood as a form of program synthesis.
21st century developments
The early 21st century has seen a surge of practical interest in the idea of program synthesis in the formal verification community and related fields. Armando Solar-Lezama showed that it is possible to encode program synthesis problems in Boolean logic and use algorithms for the Boolean satisfiability problem to automatically find programs.
= Syntax-guided synthesis
=In 2013, a unified framework for program synthesis problems called Syntax-guided Synthesis (stylized SyGuS) was proposed by researchers at UPenn, UC Berkeley, and MIT. The input to a SyGuS algorithm consists of a logical specification along with a context-free grammar of expressions that constrains the syntax of valid solutions. For example, to synthesize a function f that returns the maximum of two integers, the logical specification might look like this:
(f(x,y) = x ∨ f(x,y) = y) ∧ f(x,y) ≥ x ∧ f(x,y) ≥ y
and the grammar might be:
where "ite" stands for "if-then-else". The expression
ite(x <= y, y, x)
would be a valid solution, because it conforms to the grammar and the specification.
From 2014 through 2019, the yearly Syntax-Guided Synthesis Competition (or SyGuS-Comp) compared the different algorithms for program synthesis in a competitive event. The competition used a standardized input format, SyGuS-IF, based on SMT-Lib 2. For example, the following SyGuS-IF encodes the problem of synthesizing the maximum of two integers (as presented above):
(set-logic LIA)
(synth-fun f ((x Int) (y Int)) Int
((i Int) (c Int) (b Bool))
((i Int (c x y (+ i i) (ite b i i)))
(c Int (0 1))
(b Bool ((<= i i)))))
(declare-var x Int)
(declare-var y Int)
(constraint (>= (f x y) x))
(constraint (>= (f x y) y))
(constraint (or (= (f x y) x) (= (f x y) y)))
(check-synth)
A compliant solver might return the following output:
((define-fun f ((x Int) (y Int)) Int (ite (<= x y) y x)))
= Counter-example guided inductive synthesis
=Counter-example guided inductive synthesis (CEGIS) is an effective approach to building sound program synthesizers. CEGIS involves the interplay of two components: a generator which generates candidate programs, and a verifier which checks whether the candidates satisfy the specification.
Given a set of inputs I, a set of possible programs P, and a specification S, the goal of program synthesis is to find a program p in P such that for all inputs i in I, S(p, i) holds. CEGIS is parameterized over a generator and a verifier:
The generator takes a set of inputs T, and outputs a candidate program c that is correct on all the inputs in T, that is, a candidate such that for all inputs t in T, S(c, t) holds.
The verifier takes a candidate program c and returns true if the program satisfies S on all inputs, and otherwise returns a counterexample, that is, an input e in I such that S(c, e) fails.
CEGIS runs the generator and verifier run in a loop, accumulating counter-examples:
algorithm cegis is
input: Program generator generate,
verifier verify,
specification spec,
output: Program that satisfies spec, or failure
inputs := empty set
loop
candidate := generate(spec, inputs)
if verify(spec, candidate) then
return candidate
else verify yields a counterexample e
add e to inputs
end if
Implementations of CEGIS typically use SMT solvers as verifiers.
CEGIS was inspired by counterexample-guided abstraction refinement (CEGAR).
The framework of Manna and Waldinger
The framework of Manna and Waldinger, published in 1980, starts from a user-given first-order specification formula. For that formula, a proof is constructed, thereby also synthesizing a functional program from unifying substitutions.
The framework is presented in a table layout, the columns containing:
A line number ("Nr") for reference purposes
Formulas that already have been established, including axioms and preconditions, ("Assertions")
Formulas still to be proven, including postconditions, ("Goals"),
Terms denoting a valid output value ("Program")
A justification for the current line ("Origin")
Initially, background knowledge, pre-conditions, and post-conditions are entered into the table. After that, appropriate proof rules are applied manually. The framework has been designed to enhance human readability of intermediate formulas: contrary to classical resolution, it does not require clausal normal form, but allows one to reason with formulas of arbitrary structure and containing any junctors ("non-clausal resolution"). The proof is complete when
t
r
u
e
{\displaystyle {\it {true}}}
has been derived in the Goals column, or, equivalently,
f
a
l
s
e
{\displaystyle {\it {false}}}
in the Assertions column. Programs obtained by this approach are guaranteed to satisfy the specification formula started from; in this sense they are correct by construction. Only a minimalist, yet Turing-complete, purely functional programming language, consisting of conditional, recursion, and arithmetic and other operators is supported.
Case studies performed within this framework synthesized algorithms to compute e.g. division, remainder, square root, term unification, answers to relational database queries and several sorting algorithms.
= Proof rules
=Proof rules include:
Non-clausal resolution (see table).
For example, line 55 is obtained by resolving Assertion formulas
E
{\displaystyle E}
from 51 and
F
{\displaystyle F}
from 52 which both share some common subformula
p
{\displaystyle p}
. The resolvent is formed as the disjunction of
E
{\displaystyle E}
, with
p
{\displaystyle p}
replaced by
t
r
u
e
{\displaystyle {\it {true}}}
, and
F
{\displaystyle F}
, with
p
{\displaystyle p}
replaced by
f
a
l
s
e
{\displaystyle {\it {false}}}
. This resolvent logically follows from the conjunction of
E
{\displaystyle E}
and
F
{\displaystyle F}
. More generally,
E
{\displaystyle E}
and
F
{\displaystyle F}
need to have only two unifiable subformulas
p
1
{\displaystyle p_{1}}
and
p
2
{\displaystyle p_{2}}
, respectively; their resolvent is then formed from
E
θ
{\displaystyle E\theta }
and
F
θ
{\displaystyle F\theta }
as before, where
θ
{\displaystyle \theta }
is the most general unifier of
p
1
{\displaystyle p_{1}}
and
p
2
{\displaystyle p_{2}}
. This rule generalizes resolution of clauses.
Program terms of parent formulas are combined as shown in line 58 to form the output of the resolvent. In the general case,
θ
{\displaystyle \theta }
is applied to the latter also. Since the subformula
p
{\displaystyle p}
appears in the output, care must be taken to resolve only on subformulas corresponding to computable properties.
Logical transformations.
For example,
E
∧
(
F
∨
G
)
{\displaystyle E\land (F\lor G)}
can be transformed to
(
E
∧
F
)
∨
(
E
∧
G
)
{\displaystyle (E\land F)\lor (E\land G)}
) in Assertions as well as in Goals, since both are equivalent.
Splitting of conjunctive assertions and of disjunctive goals.
An example is shown in lines 11 to 13 of the toy example below.
Structural induction.
This rule allows for synthesis of recursive functions. For a given pre- and postcondition "Given
x
{\displaystyle x}
such that
pre
(
x
)
{\displaystyle {\textit {pre}}(x)}
, find
f
(
x
)
=
y
{\displaystyle f(x)=y}
such that
post
(
x
,
y
)
{\displaystyle {\textit {post}}(x,y)}
", and an appropriate user-given well-ordering
≺
{\displaystyle \prec }
of the domain of
x
{\displaystyle x}
, it is always sound to add an Assertion "
x
′
≺
x
∧
pre
(
x
′
)
⟹
post
(
x
′
,
f
(
x
′
)
)
{\displaystyle x'\prec x\land {\textit {pre}}(x')\implies {\textit {post}}(x',f(x'))}
". Resolving with this assertion can introduce a recursive call to
f
{\displaystyle f}
in the Program term.
An example is given in Manna, Waldinger (1980), p.108-111, where an algorithm to compute quotient and remainder of two given integers is synthesized, using the well-order
(
n
′
,
d
′
)
≺
(
n
,
d
)
{\displaystyle (n',d')\prec (n,d)}
defined by
0
≤
n
′
<
n
{\displaystyle 0\leq n'
(p.110).
Murray has shown these rules to be complete for first-order logic.
In 1986, Manna and Waldinger added generalized E-resolution and paramodulation rules to handle also equality; later, these rules turned out to be incomplete (but nevertheless sound).
= Example
=As a toy example, a functional program to compute the maximum
M
{\displaystyle M}
of two numbers
x
{\displaystyle x}
and
y
{\displaystyle y}
can be derived as follows.
Starting from the requirement description "The maximum is larger than or equal to any given number, and is one of the given numbers", the first-order formula
∀
X
∀
Y
∃
M
:
X
≤
M
∧
Y
≤
M
∧
(
X
=
M
∨
Y
=
M
)
{\displaystyle \forall X\forall Y\exists M:X\leq M\land Y\leq M\land (X=M\lor Y=M)}
is obtained as its formal translation. This formula is to be proved. By reverse Skolemization, the specification in line 10 is obtained, an upper- and lower-case letter denoting a variable and a Skolem constant, respectively.
After applying a transformation rule for the distributive law in line 11, the proof goal is a disjunction, and hence can be split into two cases, viz. lines 12 and 13.
Turning to the first case, resolving line 12 with the axiom in line 1 leads to instantiation of the program variable
M
{\displaystyle M}
in line 14. Intuitively, the last conjunct of line 12 prescribes the value that
M
{\displaystyle M}
must take in this case. Formally, the non-clausal resolution rule shown in line 57 above is applied to lines 12 and 1, with
p being the common instance x=x of A=A and x=M, obtained by syntactically unifying the latter formulas,
F[p] being true ∧ x=x, obtained from instantiated line 1 (appropriately padded to make the context F[⋅] around p visible), and
G[p] being x ≤ x ∧ y ≤ x ∧ x = x, obtained from instantiated line 12,
yielding
¬
(
{\displaystyle \lnot (}
true ∧ false) ∧ (x ≤ x ∧ y ≤ x ∧ true
)
{\displaystyle )}
,
which simplifies to
x
≤
x
∧
y
≤
x
{\displaystyle x\leq x\land y\leq x}
.
In a similar way, line 14 yields line 15 and then line 16 by resolution. Also, the second case,
x
≤
M
∧
y
≤
M
∧
y
=
M
{\displaystyle x\leq M\land y\leq M\land y=M}
in line 13, is handled similarly, yielding eventually line 18.
In a last step, both cases (i.e. lines 16 and 18) are joined, using the resolution rule from line 58; to make that rule applicable, the preparatory step 15→16 was needed. Intuitively, line 18 could be read as "in case
x
≤
y
{\displaystyle x\leq y}
, the output
y
{\displaystyle y}
is valid (with respect to the original specification), while line 15 says "in case
y
≤
x
{\displaystyle y\leq x}
, the output
x
{\displaystyle x}
is valid; the step 15→16 established that both cases 16 and 18 are complementary. Since both line 16 and 18 comes with a program term, a conditional expression results in the program column. Since the goal formula
true
{\displaystyle {\textit {true}}}
has been derived, the proof is done, and the program column of the "
true
{\displaystyle {\textit {true}}}
" line contains the program.
See also
Inductive programming
Metaprogramming
Program derivation
Natural language programming
Reactive synthesis
Notes
References
David, Cristina; Kroening, Daniel (2017-10-13). "Program synthesis: challenges and opportunities". Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences. 375 (2104): 20150403. doi:10.1098/rsta.2015.0403. ISSN 1364-503X. PMC 5597726. PMID 28871052.
Alur, Rajeev; Singh, Rishabh; Fisman, Dana; Solar-Lezama, Armando (2018-11-20). "Search-based program synthesis". Communications of the ACM. 61 (12): 84–93. doi:10.1145/3208071. ISSN 0001-0782.
Zohar Manna, Richard Waldinger (1975). "Knowledge and Reasoning in Program Synthesis". Artificial Intelligence. 6 (2): 175–208. doi:10.1016/0004-3702(75)90008-9.
Solar-Lezama, Armando (2008). Program synthesis by sketching (PDF) (Ph.D.). University of California, Berkeley.