dummy eval func (pieces + square control), bit ops, shorter int types

This commit is contained in:
2021-11-09 20:57:18 +01:00
parent e55c2e9cbe
commit 5623dc78a5
11 changed files with 386 additions and 29 deletions

21
src/eval.h Normal file
View File

@@ -0,0 +1,21 @@
/* eval.h - static position evaluation.
*
* Copyright (C) 2021 Bruno Raoult ("br")
* Licensed under the GNU General Public License v3.0 or later.
* Some rights reserved. See COPYING.
*
* You should have received a copy of the GNU General Public License along with this
* program. If not, see <https://www.gnu.org/licenses/gpl-3.0-standalone.htmlL>.
*
* SPDX-License-Identifier: GPL-3.0-or-later <https://spdx.org/licenses/GPL-3.0-or-later.html>
*
*/
#ifndef EVAL_H
#define EVAL_H
#include "position.h"
eval_t eval(pos_t *pos);
#endif /* EVAL_H */