I tried this:
float a = 1.4123;
a = a & (1 << 3);
I get a compiler error saying that the operand of & cannot be of type float.
When I do:
float a = 1.4123;
a = (int)a & (1 << 3);
I get the program running. The only thing is that the bitwise operation is done on the integer representation of the number obtained after rounding off.
The following is also not allowed.
float a = 1.4123;
a = (void*)a & (1 << 3);
I don't understand why int can be cast to void* but not float.
I am doing this to solve the problem described in Stack Overflow question How to solve linear equations using a genetic algorithm?.
a = a & (1<<3)will clear all of the bits inaexcept for the 3rd one, which is usually not what you want in a genetic algorithm. To clear a single bit, you would want to use the twos-complement operator and say something likea = a & ~(1<<3). – mob Nov 12 '09 at 17:30