1 #include "cado.h" // IWYU pragma: keep
2 
3 #include "las-globals.hpp"
4 
5 #include "las-config.h"
6 #include "las-output.hpp"
7 
8 
9 size_t base_memory = 0;
10 int recursive_descent = 0;
11 int prepend_relation_time = 0;
12 int exit_after_rel_found = 0;
13 std::mutex protect_global_exit_semaphore;
14 int global_exit_semaphore = 0;
15 
16 int allow_largesq = 0;
17 int sync_at_special_q = 0;
18 int trialdiv_first_side = 0;
19 
20 double general_grace_time_ratio = DESCENT_DEFAULT_GRACE_TIME_RATIO;
21 
22 double tt_qstart;
23 
24 las_output main_output;
25 
26 
27