single assignment - meaning and definition. What is single assignment
Diclib.com
Online Dictionary

What (who) is single assignment - definition

INTERMEDIATE REPRESENTATION (IR) IN WHICH EACH VARIABLE IS ASSIGNED EXACTLY ONCE, AND EVERY VARIABLE IS DEFINED BEFORE IT IS USED
SSA form; SSA Form; SSA (compilers); SSAF; Static single assignment; Single static assignment; SSA optimisation algorithm; Static single-assignment representation; Static single assignment representation; Static Single Assignment; Static Single Assignment form; SSA (computing); Static single assignment form

Single (football)         
SCORING A SINGLE POINT IN CANADIAN FOOTBALL ON A KICK
Single point; Rouge (football); Single points; Single (Canadian football)
In Canadian football, a single (also called a single point, or rouge) is a one-point score that is awarded for certain plays that involve the ball being kicked into the end zone.
CD single         
MUSIC SINGLE IN THE FORM OF A STANDARD SIZE COMPACT DISC
Mini CD single; CD Single; CD-single; Cd-single; 3" Cd Single; 3" CD single; Cd single; C.D. single; 3-inch CD single; Mini Compact Disc single; Compact disc single; Compact Disc single; CD (single); CD singles
A CD single (sometimes abbreviated to CDS) is a music single in the form of a compact disc. The standard in the Red Book for the term CD single is an 8 cm (3-inch) CD (or Mini CD).
singleness         
MARITAL STATUS; PERSON NOT IN A MARITAL RELATIONSHIP
Single (relationship status); Single (marital status); Single (relationship); Single people; Single persons; Singlehood; Singleness; Single by choice
n.
1.
Unity, individuality.
2.
Purity, simplicity.
3.
Sincerity, integrity, uprightness, ingenuousness.
4.
Celibacy, single blessedness.

Wikipedia

Static single-assignment form

In compiler design, static single assignment form (often abbreviated as SSA form or simply SSA) is a property of an intermediate representation (IR) that requires each variable to be assigned exactly once and defined before it is used. Existing variables in the original IR are split into versions, new variables typically indicated by the original name with a subscript in textbooks, so that every definition gets its own version. In SSA form, use-def chains are explicit and each contains a single element.

SSA was proposed by Barry K. Rosen, Mark N. Wegman, and F. Kenneth Zadeck in 1988. Zadeck shared a brief history of how SSA came into being in his presentation The Development of Static Single Assignment Form at the "Static Single-Assignment Form Seminar" conducted at the Saarland University. Ron Cytron, Jeanne Ferrante and the previous three researchers at IBM developed an algorithm that can compute the SSA form efficiently.

One can expect to find SSA in a compiler for Fortran, C, C++, or Java (Android Runtime); whereas in functional language compilers, such as those for Scheme and ML, continuation-passing style (CPS) is generally used. SSA is formally equivalent to a well-behaved subset of CPS excluding non-local control flow, which does not occur when CPS is used as intermediate representation. So optimizations and transformations formulated in terms of one immediately apply to the other.