operational semantics - Definition. Was ist operational semantics
Diclib.com
Online-Wörterbuch

Was (wer) ist operational semantics - definition

CATEGORY OF FORMAL PROGRAMMING LANGUAGE SEMANTICS
Small Step Semantics; Small step semantics; Big step semantics; Big Step Semantics; Structural operational semantics; Structured operational semantics; Natural semantics; Big-step operational semantics; Big step operational semantics; Big-step semantics; Small-step semantics; Small-step operational semantics; Small step operational semantics; Reduction context; Reduction semantics

operational semantics         
<theory> A set of rules specifying how the state of an actual or hypothetical computer changes while executing a program. The overall state is typically divided into a number of components, e.g. stack, heap, registers etc. Each rule specifies certain preconditions on the contents of some components and their new contents after the application of the rule. It is similar in spirit to the notion of a Turing machine, in which actions are precisely described in a mathematical way. Compuare axiomatic semantics, denotational semantics. (1996-08-21)
Operational semantics         
Operational semantics is a category of formal programming language semantics in which certain desired properties of a program, such as correctness, safety or security, are verified by constructing proofs from logical statements about its execution and procedures, rather than by attaching mathematical meanings to its terms (denotational semantics). Operational semantics are classified in two categories: structural operational semantics (or small-step semantics) formally describe how the individual steps of a computation take place in a computer-based system; by opposition natural semantics (or big-step semantics) describe how the overall results of the executions are obtained.
semantics         
SEMANTICS IN ALL CATEGORIES
Semantic; Semantically; Semantician; Sematics; Meaning (linguistics); Meaning (linguistic); Semantics (linguistics); Meaningful; Semanticist; Cognitive meaning; Linguistic semantics; Linguistic meaning; Sepersontics; Cognitive meanings; Psychological semantics; Meaningfulness; Natural language semantics; Psychosemantics; Theories of semantics; Cross-cultural semantics; Semantics (natural language); Semantics (philosophy); History of semantics
Note: The form 'semantic' is used as a modifier.
Semantics is the branch of linguistics that deals with the meanings of words and sentences.
N-UNCOUNT

Wikipedia

Operational semantics

Operational semantics is a category of formal programming language semantics in which certain desired properties of a program, such as correctness, safety or security, are verified by constructing proofs from logical statements about its execution and procedures, rather than by attaching mathematical meanings to its terms (denotational semantics). Operational semantics are classified in two categories: structural operational semantics (or small-step semantics) formally describe how the individual steps of a computation take place in a computer-based system; by opposition natural semantics (or big-step semantics) describe how the overall results of the executions are obtained. Other approaches to providing a formal semantics of programming languages include axiomatic semantics and denotational semantics.

The operational semantics for a programming language describes how a valid program is interpreted as sequences of computational steps. These sequences then are the meaning of the program. In the context of functional programming, the final step in a terminating sequence returns the value of the program. (In general there can be many return values for a single program, because the program could be nondeterministic, and even for a deterministic program there can be many computation sequences since the semantics may not specify exactly what sequence of operations arrives at that value.)

Perhaps the first formal incarnation of operational semantics was the use of the lambda calculus to define the semantics of Lisp. Abstract machines in the tradition of the SECD machine are also closely related.