Skip to content

Commit

Permalink
minor fix type aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
foolnotion committed May 27, 2024
1 parent 57279f3 commit 4950d7a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/operon/operators/evaluator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,10 @@ template<typename DTable>
using GaussianLikelihoodEvaluator = LikelihoodEvaluator<DTable, GaussianLikelihood<Operon::Scalar>>;

template<typename DTable>
using PoissonLikelihoodEvaluator = LikelihoodEvaluator<DTable, PoissonLikelihood<Operon::Scalar>>;
using PoissonLikelihoodEvaluator = LikelihoodEvaluator<DTable, PoissonLikelihood<Operon::Scalar, /*LogInput=*/false>>;

template<typename DTable>
using PoissonLogLikelihoodEvaluator = LikelihoodEvaluator<DTable, PoissonLikelihood<Operon::Scalar, /*LogInput=*/true>>;

} // namespace Operon
#endif

0 comments on commit 4950d7a

Please sign in to comment.