I'm writing a toy compiler thingy which can optimise function calls if the result depends only on the values of the arguments. So functions like xor and concatenate depend only on their inputs, calling them with the same input always gives the same output. But functions like time and rand depend on "hidden" program state, and calling them with the same input may give different output. I'm just trying to figure out what the adjective is that distinguishes these two types of function, like "isomorphic" or "re-entrant" or something. Can someone tell me the word I'm looking for?
|
feedback
|
|
The term you are looking for is Pure | |||
feedback
|
|
I think it's called Pure Function:
| |||
|
feedback
|
|
I guess you could say the adjective is "pure" if you go by "pure function". I always learnt that a function whose output is always the same when the arguments are always the same is called "deterministic". Personally, I feel that that is a more descriptive term. I guess a "pure function" is by definition deterministic, and it seems a pure function is also required to not have any side-effects. I assume that that need not be the case for all deterministic functions (as long as the return value is always the same for the same arguments). Wikipedia link: http://en.wikipedia.org/wiki/Deterministic_algorithm Quote:
| |||||||
feedback
|