CYCLUS
Loading...
Searching...
No Matches
facility_cost.cc
Go to the documentation of this file.
1#include "facility_cost.h"
2
3#include <math.h>
4#include <stdio.h>
5#include <iomanip>
6#include <sstream>
7
8namespace cyclus {
9namespace toolkit {
10
12 std::ostringstream strs;
13 strs << capital_cost_;
14 std::string costs = strs.str();
15 return costs;
16}
17
18} // namespace toolkit
19} // namespace cyclus
taken directly from OsiSolverInterface.cpp on 2/17/14 from https://projects.coin-or....
Definition agent.cc:14