|
|
|
|
|
by derrak
98 days ago
|
|
> code is rigid and deterministic I really wish people would start defining what they mean when they say code is deterministic. For instance, code is not deterministic in the sense that it admits a single interpretation when compiled. C code admits many assembly interpretations and the assembly you get will vary depending on your compiler and parameters. When people say code is deterministic I think they mean it has a formal semantics. But these formal semantics may admit any one of many interpretations. |
|
There's your own example defining how code is deterministic. Despite being compiled to different assembly interpretations, the code does the same thing.