/* * random.cpp * * Created on: Oct 4, 2010 * Author: Michael J. Fischer * for use in Yale course CPSC 427a, Fall 2010 */ #include "random.hpp" ostream& Random::print(ostream& out) const { out << "[Random: seed=" << seed << ", range=" << range << ", top=" << top << " End Random]" << endl; return out; }