Skip to content

Commit

Permalink
typoo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OnionKiller committed Dec 4, 2020
1 parent 7bc5634 commit bba98e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions EnvTest/src/Modell/modell_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class imperfect_virtualage_likelihood : public likelihood
virtual ~imperfect_virtualage_likelihood();
protected:
simple_failure_times failure_list_;
std::unique_ptr<function_param<double>> beta;
std::unique_ptr<function_param<double>> eta;
std::unique_ptr<function_param<double>> ar ;
std::unique_ptr<function_param<double>> ap ;
std::shared_ptr<function_param<double>> beta;
std::shared_ptr<function_param<double>> eta;
std::shared_ptr<function_param<double>> ar ;
std::shared_ptr<function_param<double>> ap ;
double Cbeta = 0, Ceta = 0, Car = 0, Cap = 0;
bool init = false;
const inline bool check_init_();
Expand Down
2 changes: 1 addition & 1 deletion EnvTest/src/Modell/rejection_sampling/impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ class rejection_sampler
imperfect_virtualage_likelihood L_;
//implement modell here
std::vector<sample_result> raw_result_;
std::vector<double> estimet_result_();
std::vector<double> estimate_result_();
};

0 comments on commit bba98e2

Please sign in to comment.