.
This commit is contained in:
parent
a70e0ec9b4
commit
c2b4511300
|
@ -85,13 +85,16 @@ function score($board,$me,$opponent,$colToPlay,$depth){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($full){
|
if($full){
|
||||||
|
echo "full";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($depth < 10){
|
if($depth < 10){
|
||||||
return 0 - better_col($newBoard,$opponent,$me,$depth + 1);
|
echo "depth";
|
||||||
|
return $depth - better_col($newBoard,$opponent,$me,$depth + 1);
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
|
echo "zero";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,10 +108,11 @@ function better_col($board,$me,$opponent,$depth){
|
||||||
if( $sc > $betterScore){
|
if( $sc > $betterScore){
|
||||||
$betterScore = $sc -$depth;
|
$betterScore = $sc -$depth;
|
||||||
$betterCol = $i;
|
$betterCol = $i;
|
||||||
}
|
echo $i.":".$sc."|";
|
||||||
echo $i." ".$sc."\n";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
echo "\n";
|
||||||
|
|
||||||
return $betterCol;
|
return $betterCol;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user