The developing is still in progress though, I made already few updates to the code. So next I`m going to work with the game tree. The code should be ready in a few weeks, it has taken a good direction so I need to do some changes and revise some issues hopefully it turns out fine.
Cheers
Search found 18 matches
- Wed Dec 10, 2014 8:15 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
- Fri Dec 05, 2014 6:54 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Yes, now I have had more time to write code, I should put more time to it in the near future. I have finished my tictactoe, which can be found at https://github.com/matrix110/Tictactoe . No quality guarantees, I just tested that it compiles
I have to admit that I haven`t looked much into C ...
I have to admit that I haven`t looked much into C ...
- Fri Sep 05, 2014 1:04 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Documents/firstchess.c: In function ‘int Eval()’:
Documents/firstchess.c:313:124: warning: large integer implicitly truncated to unsigned type [-Woverflow]
unsigned char value_piece[6] = {VALUE_PAWN, VALUE_KNIGHT, VALUE_BISHOP, VALUE_ROOK, VALUE_QUEEN, VALUE_KING};
^
Documents/firstchess.c:313 ...
Documents/firstchess.c:313:124: warning: large integer implicitly truncated to unsigned type [-Woverflow]
unsigned char value_piece[6] = {VALUE_PAWN, VALUE_KNIGHT, VALUE_BISHOP, VALUE_ROOK, VALUE_QUEEN, VALUE_KING};
^
Documents/firstchess.c:313 ...
- Thu Sep 04, 2014 6:52 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Documents/firstchess.c: In function ‘int Eval()’:
Documents/firstchess.c:313:124: warning: large integer implicitly truncated to unsigned type [-Woverflow]
unsigned char value_piece[6] = {VALUE_PAWN, VALUE_KNIGHT, VALUE_BISHOP, VALUE_ROOK, VALUE_QUEEN, VALUE_KING};
^
Documents/firstchess.c:313 ...
Documents/firstchess.c:313:124: warning: large integer implicitly truncated to unsigned type [-Woverflow]
unsigned char value_piece[6] = {VALUE_PAWN, VALUE_KNIGHT, VALUE_BISHOP, VALUE_ROOK, VALUE_QUEEN, VALUE_KING};
^
Documents/firstchess.c:313 ...
- Fri Aug 29, 2014 7:55 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
I get error message if I remove it and try to compile...
- Fri Aug 29, 2014 4:59 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Just remove #include <conio.h> ?
- Wed Aug 27, 2014 12:33 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Ok, the actual source is actually here: http://devwebcl.atarionline.pl/cc65/
I tried to compile the firstchess.c but get this error message:
gcc Documents/firstchess.c
Documents/firstchess.c:18:19: fatal error: conio.h: No such file or directory
#include <conio.h>
Maybe the compiler ...
I tried to compile the firstchess.c but get this error message:
gcc Documents/firstchess.c
Documents/firstchess.c:18:19: fatal error: conio.h: No such file or directory
#include <conio.h>
Maybe the compiler ...
- Mon May 12, 2014 2:55 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
Yep, though I`m more interested in writing in C++ rather than C. Simple C programs can be useful though. What comes to C++, I need to understand the standard libraries besides the language. I did a google search and found first edition: http://www.amazon.com/Programming-Principles-Practice-Using-C ...
- Fri May 02, 2014 9:19 am
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
I use Ubuntu
- Thu May 01, 2014 8:53 pm
- Forum: Programming and Technical Discussions
- Topic: Programming chess engine
- Replies: 40
- Views: 27001
Re: Programming chess engine
When I go to Stroustrup`s homepage there is Programming: Principles and Practice using C++ (a programming text book aimed at beginners who wants eventually to become professionals)
http://www.stroustrup.com/programming.html
It is an introduction to programming for people who has never ...
http://www.stroustrup.com/programming.html
It is an introduction to programming for people who has never ...