Bytecode: remove unused function

silicon
Sébastien Villemot 2023-02-24 15:01:35 -05:00
parent 0e1678c13a
commit 17df930eb9
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
2 changed files with 0 additions and 7 deletions

View File

@ -2373,12 +2373,6 @@ Evaluate::gotoBlock(int block)
u_count_int = fb->get_u_count_int();
}
void
Evaluate::evaluate_complete(bool no_derivatives)
{
compute_block_time(0, false, no_derivatives);
}
void
Evaluate::compute_complete_2b(bool no_derivatives, double *_res1, double *_res2, double *_max_res, int *_max_res_idx)
{

View File

@ -161,7 +161,6 @@ public:
Evaluate(int y_size_arg, int y_kmin_arg, int y_kmax_arg, bool steady_state_arg, int periods_arg, BasicSymbolTable &symbol_table_arg);
// TODO: integrate into the constructor
void loadCodeFile(const filesystem::path &codfile);
void evaluate_complete(bool no_derivatives);
bool compute_complete(bool no_derivatives, double &res1, double &res2, double &max_res, int &max_res_idx);
void compute_complete_2b(bool no_derivatives, double *_res1, double *_res2, double *_max_res, int *_max_res_idx);