Skip to content

Commit

Permalink
remove comment and unnecessary print
Browse files Browse the repository at this point in the history
  • Loading branch information
foolnotion committed Aug 11, 2023
1 parent 382b68d commit 2321800
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion include/operon/interpreter/dispatch_table.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ struct DispatchTable {
}; // struct DispatchTable

using DefaultDispatch = DispatchTable<Operon::Scalar, Operon::Seq<std::size_t, Dispatch::DefaultBatchSize<Operon::Scalar>>>;
//using DefaultDispatch = DispatchTable<Operon::Scalar, Operon::Seq<std::size_t, 1UL>>;
} // namespace Operon

#endif
3 changes: 0 additions & 3 deletions source/operators/evaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,6 @@ namespace Operon {
cParameters -= p/2 * std::log(3);

auto cLikelihood = optimizer->ComputeLikelihood(buffer, targetValues, sigma_);
fmt::print("sErr: {}\n", sigma_);
fmt::print("cc: {}, cp: {}, cl: {}\n", cComplexity, cParameters, cLikelihood);

auto mdl = cComplexity + cParameters + cLikelihood;
if (!std::isfinite(mdl)) { mdl = EvaluatorBase::ErrMax; }
return typename EvaluatorBase::ReturnType { static_cast<Operon::Scalar>(mdl) };
Expand Down

0 comments on commit 2321800

Please sign in to comment.