Re: Terms-Of-The-Art are Liars
dbush <[email protected]>
| Newsgroups | sci.logic,sci.math,comp.theory,comp.ai.philosophy,alt.philosophy |
|---|---|
| Organization | A noiseless patient Spider |
| Message-ID | <[email protected]> |
On 7/4/2026 5:12 PM, olcott wrote:
> Math mapping from an input to an output:
> Ignore the input and output a fixed constant.
> int mapping_function(int x)
> {
> return 0;
> }
>
>
Given the following mathematical mapping:
input | output
--------------
0 | 4
1 | 4
2 | 4
3 | 4
...
253 | 4
254 | 4
255 | 4
And the requirement for an algorithm that can compute this mapping,
Does following algorithm meet this requirement?
int foo(unsigned char x)
{
return 4;
}