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.

24 lines
391 B

use crate::solver::Solver;
use crate::board::Board;
pub struct MySolver {
}
impl MySolver {
pub fn new() -> MySolver {
return MySolver {};
}
}
impl Solver for MySolver {
fn solve(&self, _pg: &Board) -> Option<Board> {
// FIXME: Implement!
None
}
fn is_unique(&self, _ : &Board) -> bool {
// FIXME: Implement
false
}
}