diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2011-06-18 21:50:32 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2011-06-18 21:50:32 -0400 |
| commit | b0d93d52f9702354102d99408f5783de4a5c4719 (patch) | |
| tree | 9f56e782914c66402acba5d742b05674a4b45d1b /ltg.ml | |
| parent | 665bec9bf77f1917a116e71f578d08995b8373c4 (diff) | |
| parent | f779c415e4e2c7720aa0525397141c51d7b10fd5 (diff) | |
| download | icfp2011-b0d93d52f9702354102d99408f5783de4a5c4719.tar.gz | |
Merge branch 'master' of github.com:Zaran/icfp2011
Diffstat (limited to 'ltg.ml')
| -rw-r--r-- | ltg.ml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,9 +14,9 @@ let opponent = match me with let read_move () = Scanf.scanf "%d\n" (fun d -> match d with | 1 -> Scanf.scanf "%s\n%d\n" (fun s d -> - Cards.left_apply opponent (card_of_string s) d) + Game.left_apply opponent (card_of_string s) d) | 2 -> Scanf.scanf "%d\n%s\n" (fun d s -> - Cards.right_apply opponent (card_of_string s) d) + Game.right_apply opponent (card_of_string s) d) | _ -> failwith "Wrong move number" ) |
