]> git.sesse.net Git - stockfish/blobdiff - src/material.h
Reorder members of Material::Entry
[stockfish] / src / material.h
index 9d6eed0a4419d1516f6cb490f4865288159564e7..ccf97b71d6970fd0913797fe89cff1d5b5249cc1 100644 (file)
@@ -56,11 +56,11 @@ struct Entry {
   }
 
   Key key;
-  int16_t value;
-  uint8_t factor[COLOR_NB];
   EndgameBase<Value>* evaluationFunction;
   EndgameBase<ScaleFactor>* scalingFunction[COLOR_NB]; // Could be one for each
                                                        // side (e.g. KPKP, KBPsKs)
+  int16_t value;
+  uint8_t factor[COLOR_NB];
   Phase gamePhase;
 };