Algorithm Primitives
Since the computing agent is to be a computer, the following
primitives generally associated with a computer will be used:
- Input and Output operations (ie. Input the number of data values
into variable N)
- Symbolic expressions (ie. a+b*c )
- Setting the value for a symbol (ie. set the value of i to 1)
- Conditional execution of steps (ie. if ... then ... else ... )
- Repeatative execution of steps (ie. while ... do ... or repeat
until ...)
- Subscripted symbols generally used in loops where each subscripted
item is computed simalarly for each interation.
(ie.
)