You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
501 B
18 lines
501 B
#ifndef solver_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
|
|
#define solver_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
|
|
|
|
/**
|
|
* Tries to solve the Sudoku with logic
|
|
* @param s the sudokue to solve
|
|
*/
|
|
int sl_loes(sudoku* s, options * o);
|
|
|
|
/**
|
|
* Tries to solve a sudoku with backtracking (bruteforce)
|
|
* @param s the sudokue to solve
|
|
* @param pos the actual position, usualy start with 0
|
|
*/
|
|
int s_loes_track(sudoku * s, int pos, options * o);
|
|
|
|
#endif /* solver_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__ */
|