All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ratedMove.cc
Go to the documentation of this file.
1 #include "osl/rating/ratedMove.h"
2 #include <iostream>
3 #include <cassert>
4 
5 #ifndef MINIMAL
6 std::ostream& osl::rating::operator<<(std::ostream& os, RatedMove const& move){
7  return os << move.move() << "+rate " << move.rating() << " " << move.optimisticRating();
8 }
9 #endif
10 // ;;; Local Variables:
11 // ;;; mode:c++
12 // ;;; c-basic-offset:2
13 // ;;; End: