moveLogProb.cc
Go to the documentation of this file.
1 #include "osl/moveLogProb.h"
2 #include <iostream>
3 #include <cassert>
4 
5 #ifndef MINIMAL
6 namespace osl{
7  std::ostream& operator<<(std::ostream& os,MoveLogProb const& moveLogProb){
8  return os << "MoveLogProb("<< moveLogProb.move() << "," <<
9  moveLogProb.logProb() << ")";
10  }
11 }
12 #endif
std::ostream & operator<<(std::ostream &os, Player player)
Definition: basic_type.cc:14
const Move move() const
Definition: moveLogProb.h:39
int logProb() const
Definition: moveLogProb.h:40