TSTP Solution File: NUM017-1 by GKC---0.8

View Problem - Process Solution

%------------------------------------------------------------------------------
% File     : GKC---0.8
% Problem  : NUM017-1 : TPTP v8.1.2. Released v1.0.0.
% Transfm  : none
% Format   : tptp:raw
% Command  : gkc %s

% Computer : n029.cluster.edu
% Model    : x86_64 x86_64
% CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 2.10GHz
% Memory   : 8042.1875MB
% OS       : Linux 3.10.0-693.el7.x86_64
% CPULimit : 300s
% WCLimit  : 300s
% DateTime : Thu Aug 31 11:22:39 EDT 2023

% Result   : Unsatisfiable 47.02s 6.62s
% Output   : CNFRefutation 47.02s
% Verified : 
% SZS Type : ERROR: Analysing output (Could not find formula named product_associativity1)

% Comments : 
%------------------------------------------------------------------------------
cnf('1',plain,
    ( ~ product(X,Y,Z)
    | ~ product(U,X,V)
    | ~ product(U,Z,W)
    | product(V,Y,W) ),
    inference(cnf_transformation,[],[product_associativity1]) ).

cnf('2',plain,
    ( ~ product(X,Y,Z)
    | product(Y,X,Z) ),
    inference(cnf_transformation,[],[product_commutativity]) ).

cnf('3',plain,
    product(X,Y,multiply(X,Y)),
    inference(cnf_transformation,[],[closure_of_product]) ).

cnf('4',plain,
    product(X,Y,multiply(Y,X)),
    inference(resolution,[],['2','3']) ).

cnf('5',plain,
    ( ~ product(X,multiply(Y,Z),U)
    | ~ product(X,Z,V)
    | product(V,Y,U) ),
    inference(resolution,[],['1','4']) ).

cnf('6',plain,
    ( ~ product(X,Y,Z)
    | ~ product(X,Y,U)
    | equalish(Z,U) ),
    inference(cnf_transformation,[],[well_defined_product]) ).

cnf('7',plain,
    ( equalish(multiply(X,Y),Z)
    | ~ product(Y,X,Z) ),
    inference(resolution,[],['6','4']) ).

cnf('8',plain,
    equalish(multiply(X,Y),multiply(Y,X)),
    inference(resolution,[],['7','3']) ).

cnf('9',plain,
    ( ~ product(X,Y,Z)
    | product(X,U,Z)
    | ~ equalish(Y,U) ),
    inference(cnf_transformation,[],[product_substitution2]) ).

cnf('10',plain,
    ( product(X,Y,multiply(Z,X))
    | ~ equalish(Z,Y) ),
    inference(resolution,[],['9','4']) ).

cnf('11',plain,
    product(X,multiply(Y,Z),multiply(multiply(Z,Y),X)),
    inference(resolution,[],['8','10']) ).

cnf('12',plain,
    ( product(X,Y,multiply(multiply(Z,Y),U))
    | ~ product(U,Z,X) ),
    inference(resolution,[],['5','11']) ).

cnf('13',plain,
    ( ~ product(X,X,Y)
    | ~ divides(Z,Y)
    | divides(Z,X)
    | ~ prime(Z) ),
    inference(cnf_transformation,[],[primes_lemma1]) ).

cnf('14',plain,
    ( ~ divides(X,multiply(Y,Y))
    | divides(X,Y)
    | ~ prime(X) ),
    inference(resolution,[],['13','4']) ).

cnf('15',plain,
    ( ~ product(X,Y,Z)
    | divides(X,Z) ),
    inference(cnf_transformation,[],[product_divisible_by_operand]) ).

cnf('16',plain,
    divides(X,multiply(Y,X)),
    inference(resolution,[],['4','15']) ).

cnf('17',plain,
    ( divides(X,X)
    | ~ prime(X) ),
    inference(resolution,[],['14','16']) ).

cnf('18',plain,
    prime(a),
    inference(cnf_transformation,[],[a_is_prime]) ).

cnf('19',plain,
    divides(a,a),
    inference(resolution,[],['17','18']) ).

cnf('20',plain,
    ( product(X,second_divided_by_1st(X,Y),Y)
    | ~ divides(X,Y) ),
    inference(cnf_transformation,[],[divides_implies_product]) ).

cnf('21',plain,
    product(a,second_divided_by_1st(a,a),a),
    inference(resolution,[],['19','20']) ).

cnf('22',plain,
    product(a,X,multiply(multiply(second_divided_by_1st(a,a),X),a)),
    inference(resolution,[],['12','21']) ).

cnf('23',plain,
    ( ~ product(X,Y,Z)
    | ~ product(X,U,Z)
    | equalish(U,Y) ),
    inference(cnf_transformation,[],[product_left_cancellation]) ).

cnf('24',plain,
    ( ~ product(X,Y,multiply(Z,X))
    | equalish(Y,Z) ),
    inference(resolution,[],['23','4']) ).

cnf('25',plain,
    equalish(X,multiply(second_divided_by_1st(a,a),X)),
    inference(resolution,[],['22','24']) ).

cnf('26',plain,
    ( ~ equalish(X,Y)
    | equalish(Y,X) ),
    inference(cnf_transformation,[],[symmetry]) ).

cnf('27',plain,
    equalish(multiply(second_divided_by_1st(a,a),X),X),
    inference(resolution,[],['25','26']) ).

cnf('28',plain,
    ( ~ divides(X,Y)
    | ~ equalish(Y,Z)
    | divides(X,Z) ),
    inference(cnf_transformation,[],[divides_substitution1]) ).

cnf('29',plain,
    divides(X,multiply(X,Y)),
    inference(resolution,[],['15','3']) ).

cnf('30',plain,
    ( ~ equalish(multiply(X,Y),Z)
    | divides(X,Z) ),
    inference(resolution,[],['28','29']) ).

cnf('31',plain,
    divides(second_divided_by_1st(a,a),X),
    inference(resolution,[],['27','30']) ).

cnf('32',plain,
    ( ~ divides(X,c)
    | ~ divides(X,b) ),
    inference(cnf_transformation,[],[prove_there_is_no_common_divisor]) ).

cnf('33',plain,
    ~ divides(second_divided_by_1st(a,a),b),
    inference(resolution,[],['31','32']) ).

cnf('34',plain,
    $false,
    inference(resolution,[],['33','31']) ).


%------------------------------------------------------------------------------
%----ORIGINAL SYSTEM OUTPUT
% 0.00/0.12  % Problem  : NUM017-1 : TPTP v8.1.2. Released v1.0.0.
% 0.00/0.13  % Command  : gkc %s
% 0.12/0.34  % Computer : n029.cluster.edu
% 0.12/0.34  % Model    : x86_64 x86_64
% 0.12/0.34  % CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz
% 0.12/0.34  % Memory   : 8042.1875MB
% 0.12/0.34  % OS       : Linux 3.10.0-693.el7.x86_64
% 0.12/0.34  % CPULimit : 300
% 0.12/0.34  % WCLimit  : 300
% 0.12/0.34  % DateTime : Fri Aug 25 17:01:39 EDT 2023
% 0.12/0.34  % CPUTime  : 
% 0.18/0.38  
% 0.18/0.38  input clause set summed statistics:
% 0.18/0.38  ----------------------------------
% 0.18/0.38  in_clause_count:                    24
% 0.18/0.38  in_rule_clause_count:               20
% 0.18/0.38  in_fact_clause_count:                4
% 0.18/0.38  in_answer_clause_count:              0
% 0.18/0.38  in_ground_clause_count:              4
% 0.18/0.38  in_unit_clause_count:                6
% 0.18/0.38  in_horn_clause_count:               24
% 0.18/0.38  in_pos_clause_count:                 5
% 0.18/0.38  in_neg_clause_count:                 2
% 0.18/0.38  in_poseq_clause_count:               0
% 0.18/0.38  in_negeq_clause_count:               0
% 0.18/0.38  in_unitposeq_clause_count:           0
% 0.18/0.38  in_chain_clause_count:               0
% 0.18/0.38  in_min_length:             1
% 0.18/0.38  in_max_length:             4
% 0.18/0.38  in_min_depth:              1
% 0.18/0.38  in_max_depth:              2
% 0.18/0.38  in_min_size:               2
% 0.18/0.38  in_max_size:              16
% 0.18/0.38  in_min_vars:               0
% 0.18/0.38  in_max_vars:               6
% 0.18/0.38  in_extaxiom_count:                 0
% 0.18/0.38  in_axiom_count:                   19
% 0.18/0.38  in_assumption_count:               4
% 0.18/0.38  in_goal_count:                     1
% 0.18/0.38  in_neg_goal_count:                 1
% 0.18/0.38  in_pos_goal_count:                 0
% 0.18/0.38  in_posunit_goal_count:             0
% 0.18/0.38  
% 0.18/0.38  auto guide:
% 0.18/0.38  -----------
% 0.18/0.38  {
% 0.18/0.38  "print":1,
% 0.18/0.38  "print_level": 15,
% 0.18/0.38  "max_size": 0,
% 0.18/0.38  "max_depth": 0,
% 0.18/0.38  "max_length": 0,
% 0.18/0.38  "max_dseconds": 0,
% 0.18/0.38  "equality":0,
% 0.18/0.38  "runs":[
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "sine":5, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["hardness_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0, "var_weight":70, "repeat_var_weight":70},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "weight_select_ratio":100, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "double"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["hardness_pref"], "query_preference":0, "weight_select_ratio":20, "depth_penalty":50, "length_penalty":100},
% 0.18/0.38  {"length_penalty":100, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":1},
% 0.18/0.38  {"strategy":["hardness_pref", "max_weight"], "length_penalty":100, "depth_penalty":50, "max_depth":3, "var_weight":10, "repeat_var_weight":10, "max_dseconds":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["positive_pref"], "query_preference":0},
% 0.18/0.38  {"var_weight":70, "repeat_var_weight":70, "max_depth":3, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"], "query_preference":0, "var_weight":1, "depth_penalty":100, "repeat_var_weight":1},
% 0.18/0.38  {"weight_select_ratio":100, "length_penalty":100, "query_preference":1, "strategy":["query_focus"], "max_dseconds":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "weight_select_ratio":20},
% 0.18/0.38  {"max_dseconds":1, "strategy":["hardness_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "positive_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "max_ground_weight"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "unit"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":1, "strategy":["hardness_pref", "max_ground_weight"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":1, "depth_penalty":100},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus", "positive_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["unit"], "query_preference":1, "reverse_clauselist":1},
% 0.18/0.38  {"max_dseconds":1, "strategy":["query_focus"], "query_preference":3},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "max_depth":5, "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "max_weight":40, "query_preference":0},
% 0.18/0.38  {"max_dseconds":1, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "sine":5, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["hardness_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0, "var_weight":70, "repeat_var_weight":70},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "weight_select_ratio":100, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "double"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["hardness_pref"], "query_preference":0, "weight_select_ratio":20, "depth_penalty":50, "length_penalty":100},
% 0.18/0.38  {"length_penalty":100, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":10},
% 0.18/0.38  {"strategy":["hardness_pref", "max_weight"], "length_penalty":100, "depth_penalty":50, "max_depth":3, "var_weight":10, "repeat_var_weight":10, "max_dseconds":10},
% 0.18/0.38  {"max_dseconds":10, "strategy":["positive_pref"], "query_preference":0},
% 0.18/0.38  {"var_weight":70, "repeat_var_weight":70, "max_depth":3, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":10},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"], "query_preference":0, "var_weight":1, "depth_penalty":100, "repeat_var_weight":1},
% 0.18/0.38  {"weight_select_ratio":100, "length_penalty":100, "query_preference":1, "strategy":["query_focus"], "max_dseconds":10},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "weight_select_ratio":20},
% 0.18/0.38  {"max_dseconds":10, "strategy":["hardness_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "positive_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "max_ground_weight"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "unit"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":10, "strategy":["hardness_pref", "max_ground_weight"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":1, "depth_penalty":100},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus", "positive_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["unit"], "query_preference":1, "reverse_clauselist":1},
% 0.18/0.38  {"max_dseconds":10, "strategy":["query_focus"], "query_preference":3},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "max_depth":5, "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "max_weight":40, "query_preference":0},
% 0.18/0.38  {"max_dseconds":10, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "sine":5, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["hardness_pref"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"],  "weight_select_ratio":100, "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"],  "weight_select_ratio":100, "query_preference":0, "var_weight":70, "repeat_var_weight":70},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "weight_select_ratio":100, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "double"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["hardness_pref"], "query_preference":0, "weight_select_ratio":20, "depth_penalty":50, "length_penalty":100},
% 0.18/0.38  {"length_penalty":100, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":50},
% 0.18/0.38  {"strategy":["hardness_pref", "max_weight"], "length_penalty":100, "depth_penalty":50, "max_depth":3, "var_weight":10, "repeat_var_weight":10, "max_dseconds":50},
% 0.18/0.38  {"max_dseconds":50, "strategy":["positive_pref"], "query_preference":0},
% 0.18/0.38  {"var_weight":70, "repeat_var_weight":70, "max_depth":3, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":50},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"], "query_preference":0, "var_weight":1, "depth_penalty":100, "repeat_var_weight":1},
% 0.18/0.38  {"weight_select_ratio":100, "length_penalty":100, "query_preference":1, "strategy":["query_focus"], "max_dseconds":50},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "weight_select_ratio":20},
% 0.18/0.38  {"max_dseconds":50, "strategy":["hardness_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "positive_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "max_ground_weight"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "unit"], "query_preference":2},
% 0.18/0.38  {"max_dseconds":50, "strategy":["hardness_pref", "max_ground_weight"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":1, "depth_penalty":100},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus", "positive_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["unit"], "query_preference":1, "reverse_clauselist":1},
% 0.18/0.38  {"max_dseconds":50, "strategy":["query_focus"], "query_preference":3},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "max_depth":5, "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "max_weight":40, "query_preference":0},
% 0.18/0.38  {"max_dseconds":50, "strategy":["negative_pref"], "query_preference":0, "weight_select_ratio":100, "depth_penalty":100, "length_penalty":100},
% 0.18/0.38  
% 0.18/0.38  {"max_dseconds":250, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":250, "strategy":["negative_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["query_focus"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "weight_select_ratio":100, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["query_focus", "double"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":250, "strategy":["unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["hardness_pref"], "query_preference":0, "weight_select_ratio":20, "depth_penalty":50, "length_penalty":100},
% 0.18/0.38  {"length_penalty":100, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":250},
% 0.18/0.38  {"strategy":["hardness_pref", "max_weight"], "length_penalty":100, "depth_penalty":50, "max_depth":3, "var_weight":10, "repeat_var_weight":10, "max_dseconds":250},
% 0.18/0.38  {"max_dseconds":250, "strategy":["positive_pref"], "query_preference":0},
% 0.18/0.38  {"var_weight":70, "repeat_var_weight":70, "max_depth":3, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":250},
% 0.18/0.38  {"max_dseconds":250, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["negative_pref"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":250, "strategy":["unit"], "query_preference":0, "var_weight":1, "depth_penalty":100, "repeat_var_weight":1},
% 0.18/0.38  {"weight_select_ratio":100, "length_penalty":100, "query_preference":1, "strategy":["query_focus"], "max_dseconds":250},
% 0.18/0.38  {"max_dseconds":250, "strategy":["negative_pref"], "weight_select_ratio":20},
% 0.18/0.38  {"max_dseconds":250, "strategy":["hardness_pref"], "query_preference":0},
% 0.18/0.38  
% 0.18/0.38  {"max_dseconds":1250, "strategy":["negative_pref"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["negative_pref"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["query_focus"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "weight_select_ratio":100, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["query_focus", "double"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["unit"], "query_preference":0},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["unit"], "query_preference":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["hardness_pref"], "query_preference":0, "weight_select_ratio":20, "depth_penalty":50, "length_penalty":100},
% 0.18/0.38  {"length_penalty":100, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":1250},
% 0.18/0.38  {"strategy":["hardness_pref", "max_weight"], "length_penalty":100, "depth_penalty":50, "max_depth":3, "var_weight":10, "repeat_var_weight":10, "max_dseconds":1250},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["positive_pref"], "query_preference":0},
% 0.18/0.38  {"var_weight":70, "repeat_var_weight":70, "max_depth":3, "query_preference":0, "strategy":["negative_pref"], "max_dseconds":1250},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["query_focus"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["negative_pref"], "query_preference":1, "var_weight":1, "repeat_var_weight":1},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["unit"], "query_preference":0, "var_weight":1, "depth_penalty":100, "repeat_var_weight":1},
% 0.18/0.38  {"weight_select_ratio":100, "length_penalty":100, "query_preference":1, "strategy":["query_focus"], "max_dseconds":1250},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["negative_pref"], "weight_select_ratio":20},
% 0.18/0.38  {"max_dseconds":1250, "strategy":["hardness_pref"], "query_preference":0} 
% 0.18/0.38  
% 0.18/0.38  ]}
% 0.18/0.38  
% 0.18/0.38  
% 0.18/0.38  **** run 1 fork 0 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["negative_pref"],"query_preference":0}
% 0.18/0.38  
% 0.18/0.38  **** run 2 fork 1 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"sine":5,"strategy":["negative_pref"],"query_preference":0}
% 0.18/0.38  
% 0.18/0.38  **** run 3 fork 2 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0}
% 0.18/0.38  
% 0.18/0.38  **** run 4 fork 3 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["hardness_pref"],"weight_select_ratio":100,"query_preference":0}
% 0.18/0.38  
% 0.18/0.38  **** run 5 fork 4 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["negative_pref"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 0.18/0.38  
% 0.18/0.38  **** run 6 fork 5 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["unit"],"weight_select_ratio":100,"query_preference":0}
% 0.18/0.38  
% 0.18/0.38  **** run 7 fork 6 starts with strategy
% 0.18/0.38  {"max_dseconds":1,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0,"var_weight":70,"repeat_var_weight":70}
% 0.18/0.40  
% 0.18/0.40  **** run 8 fork 7 starts with strategy
% 0.18/0.40  {"max_dseconds":1,"strategy":["unit"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 0.18/0.42  
% 0.18/0.42  fork 1: search finished without proof.
% 0.18/0.46  
% 0.18/0.46  **** run 10 fork 1 starts with strategy
% 0.18/0.46  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":1}
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 3: search terminated without proof.
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 4: search terminated without proof.
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 5: search terminated without proof.
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 2: search terminated without proof.
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 6: search terminated without proof.
% 0.18/0.51  
% 0.18/0.51  
% 0.18/0.51  fork 0: search terminated without proof.
% 0.18/0.52  
% 0.18/0.52  
% 0.18/0.52  fork 7: search terminated without proof.
% 0.18/0.53  
% 0.18/0.53  **** run 12 fork 3 starts with strategy
% 0.18/0.53  {"max_dseconds":1,"strategy":["query_focus","double"],"query_preference":1}
% 0.18/0.53  
% 0.18/0.53  **** run 15 fork 6 starts with strategy
% 0.18/0.53  {"max_dseconds":1,"strategy":["hardness_pref"],"query_preference":0,"weight_select_ratio":20,"depth_penalty":50,"length_penalty":100}
% 0.18/0.53  
% 0.18/0.53  **** run 13 fork 4 starts with strategy
% 0.18/0.53  {"max_dseconds":1,"strategy":["unit"],"query_preference":0}
% 0.18/0.53  
% 0.18/0.53  **** run 9 fork 0 starts with strategy
% 0.18/0.53  {"max_dseconds":1,"strategy":["negative_pref"],"query_preference":1}
% 0.18/0.54  
% 0.18/0.54  **** run 14 fork 5 starts with strategy
% 0.18/0.54  {"max_dseconds":1,"strategy":["unit"],"query_preference":1}
% 0.18/0.54  
% 0.18/0.54  **** run 11 fork 2 starts with strategy
% 0.18/0.54  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":1,"var_weight":1,"weight_select_ratio":100,"repeat_var_weight":1}
% 0.18/0.55  
% 0.18/0.55  **** run 16 fork 7 starts with strategy
% 0.18/0.55  {"length_penalty":100,"query_preference":0,"strategy":["negative_pref"],"max_dseconds":1}
% 0.18/0.59  
% 0.18/0.59  
% 0.18/0.59  fork 1: search terminated without proof.
% 0.18/0.62  
% 0.18/0.62  **** run 18 fork 1 starts with strategy
% 0.18/0.62  {"max_dseconds":1,"strategy":["positive_pref"],"query_preference":0}
% 0.18/0.65  
% 0.18/0.65  
% 0.18/0.65  fork 4: search terminated without proof.
% 0.18/0.65  
% 0.18/0.65  
% 0.18/0.65  fork 0: search terminated without proof.
% 0.18/0.65  
% 0.18/0.65  
% 0.18/0.65  fork 5: search terminated without proof.
% 0.18/0.66  
% 0.18/0.66  
% 0.18/0.66  fork 7: search terminated without proof.
% 0.18/0.66  
% 0.18/0.66  
% 0.18/0.66  fork 6: search terminated without proof.
% 0.18/0.67  
% 0.18/0.67  **** run 17 fork 0 starts with strategy
% 0.18/0.67  {"strategy":["hardness_pref","max_weight"],"length_penalty":100,"depth_penalty":50,"max_depth":3,"var_weight":10,"repeat_var_weight":10,"max_dseconds":1}
% 0.18/0.67  
% 0.18/0.67  
% 0.18/0.67  fork 2: search terminated without proof.
% 0.18/0.67  
% 0.18/0.67  **** run 22 fork 5 starts with strategy
% 0.18/0.67  {"max_dseconds":1,"strategy":["unit"],"query_preference":0,"var_weight":1,"depth_penalty":100,"repeat_var_weight":1}
% 0.18/0.67  
% 0.18/0.67  **** run 21 fork 4 starts with strategy
% 0.18/0.67  {"max_dseconds":1,"strategy":["negative_pref"],"query_preference":1,"var_weight":1,"repeat_var_weight":1}
% 0.18/0.68  
% 0.18/0.68  **** run 23 fork 6 starts with strategy
% 0.18/0.68  {"weight_select_ratio":100,"length_penalty":100,"query_preference":1,"strategy":["query_focus"],"max_dseconds":1}
% 0.18/0.68  
% 0.18/0.68  **** run 24 fork 7 starts with strategy
% 0.18/0.68  {"max_dseconds":1,"strategy":["negative_pref"],"weight_select_ratio":20}
% 0.18/0.69  
% 0.18/0.69  **** run 19 fork 2 starts with strategy
% 0.18/0.69  {"var_weight":70,"repeat_var_weight":70,"max_depth":3,"query_preference":0,"strategy":["negative_pref"],"max_dseconds":1}
% 0.18/0.71  
% 0.18/0.71  
% 0.18/0.71  fork 3: search terminated without proof.
% 0.18/0.74  
% 0.18/0.74  **** run 20 fork 3 starts with strategy
% 0.18/0.74  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":1,"var_weight":1,"repeat_var_weight":1}
% 0.18/0.75  
% 0.18/0.75  
% 0.18/0.75  fork 1: search terminated without proof.
% 0.18/0.76  
% 0.18/0.76  **** run 26 fork 1 starts with strategy
% 0.18/0.76  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":2}
% 0.18/0.79  
% 0.18/0.79  
% 0.18/0.79  fork 4: search terminated without proof.
% 0.18/0.80  
% 0.18/0.80  
% 0.18/0.80  fork 6: search terminated without proof.
% 2.76/0.81  
% 2.76/0.81  **** run 29 fork 4 starts with strategy
% 2.76/0.81  {"max_dseconds":1,"strategy":["query_focus","unit"],"query_preference":1}
% 2.76/0.81  
% 2.76/0.81  
% 2.76/0.81  fork 2: search terminated without proof.
% 2.76/0.81  
% 2.76/0.81  
% 2.76/0.81  fork 5: search terminated without proof.
% 2.76/0.82  
% 2.76/0.82  **** run 31 fork 6 starts with strategy
% 2.76/0.82  {"max_dseconds":1,"strategy":["query_focus","unit"],"query_preference":2}
% 2.76/0.82  
% 2.76/0.82  
% 2.76/0.82  fork 7: search terminated without proof.
% 2.76/0.82  
% 2.76/0.82  
% 2.76/0.82  fork 0: search terminated without proof.
% 2.76/0.83  
% 2.76/0.83  **** run 30 fork 5 starts with strategy
% 2.76/0.83  {"max_dseconds":1,"strategy":["query_focus","max_ground_weight"],"query_preference":1}
% 2.76/0.83  
% 2.76/0.83  **** run 27 fork 2 starts with strategy
% 2.76/0.83  {"max_dseconds":1,"strategy":["query_focus","unit"],"query_preference":0}
% 2.76/0.84  
% 2.76/0.84  **** run 32 fork 7 starts with strategy
% 2.76/0.84  {"max_dseconds":1,"strategy":["hardness_pref","max_ground_weight"],"query_preference":0}
% 2.76/0.84  
% 2.76/0.84  **** run 25 fork 0 starts with strategy
% 2.76/0.84  {"max_dseconds":1,"strategy":["hardness_pref"],"query_preference":0}
% 2.76/0.87  
% 2.76/0.87  
% 2.76/0.87  fork 3: search terminated without proof.
% 3.93/0.89  
% 3.93/0.89  
% 3.93/0.89  fork 1: search terminated without proof.
% 3.93/0.90  
% 3.93/0.90  **** run 28 fork 3 starts with strategy
% 3.93/0.90  {"max_dseconds":1,"strategy":["query_focus","positive_pref"],"query_preference":0}
% 3.93/0.90  
% 3.93/0.90  **** run 34 fork 1 starts with strategy
% 3.93/0.90  {"max_dseconds":1,"strategy":["query_focus","positive_pref"],"query_preference":1}
% 3.93/0.93  
% 3.93/0.93  
% 3.93/0.93  fork 6: search terminated without proof.
% 3.93/0.94  
% 3.93/0.94  
% 3.93/0.94  fork 4: search terminated without proof.
% 3.93/0.95  
% 3.93/0.95  
% 3.93/0.95  fork 2: search terminated without proof.
% 3.93/0.95  
% 3.93/0.95  **** run 39 fork 6 starts with strategy
% 3.93/0.95  {"max_dseconds":1,"strategy":["negative_pref"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 3.93/0.95  
% 3.93/0.95  
% 3.93/0.95  fork 5: search terminated without proof.
% 3.93/0.96  
% 3.93/0.96  
% 3.93/0.96  fork 7: search terminated without proof.
% 3.93/0.96  
% 3.93/0.96  
% 3.93/0.96  fork 0: search terminated without proof.
% 3.93/0.96  
% 3.93/0.96  **** run 37 fork 4 starts with strategy
% 3.93/0.96  {"max_dseconds":1,"strategy":["negative_pref"],"max_depth":5,"query_preference":0}
% 3.93/0.97  
% 3.93/0.97  **** run 38 fork 5 starts with strategy
% 3.93/0.97  {"max_dseconds":1,"strategy":["negative_pref"],"max_weight":40,"query_preference":0}
% 3.93/0.97  
% 3.93/0.97  **** run 35 fork 2 starts with strategy
% 3.93/0.97  {"max_dseconds":1,"strategy":["unit"],"query_preference":1,"reverse_clauselist":1}
% 3.93/0.97  
% 3.93/0.97  **** run 40 fork 7 starts with strategy
% 3.93/0.97  {"max_dseconds":10,"strategy":["negative_pref"],"query_preference":0}
% 3.93/0.98  
% 3.93/0.98  **** run 33 fork 0 starts with strategy
% 3.93/0.98  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":1,"depth_penalty":100}
% 4.72/0.99  
% 4.72/0.99  fork 5: search finished without proof.
% 4.86/1.01  
% 4.86/1.01  **** run 46 fork 5 starts with strategy
% 4.86/1.01  {"max_dseconds":10,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0,"var_weight":70,"repeat_var_weight":70}
% 4.86/1.01  
% 4.86/1.01  
% 4.86/1.01  fork 3: search terminated without proof.
% 4.99/1.02  
% 4.99/1.02  
% 4.99/1.02  fork 1: search terminated without proof.
% 4.99/1.03  
% 4.99/1.03  **** run 36 fork 3 starts with strategy
% 4.99/1.03  {"max_dseconds":1,"strategy":["query_focus"],"query_preference":3}
% 4.99/1.04  
% 4.99/1.04  **** run 42 fork 1 starts with strategy
% 4.99/1.04  {"max_dseconds":10,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0}
% 4.99/1.06  No candidate clauses found.
% 4.99/1.06  
% 4.99/1.06  
% 4.99/1.06  fork 3: search terminated without proof.
% 4.99/1.08  
% 4.99/1.08  **** run 44 fork 3 starts with strategy
% 4.99/1.08  {"max_dseconds":10,"strategy":["negative_pref"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 4.99/1.08  
% 4.99/1.08  
% 4.99/1.08  fork 4: search terminated without proof.
% 4.99/1.08  
% 4.99/1.08  
% 4.99/1.08  fork 6: search terminated without proof.
% 4.99/1.10  
% 4.99/1.10  
% 4.99/1.10  fork 0: search terminated without proof.
% 4.99/1.10  
% 4.99/1.10  
% 4.99/1.10  fork 2: search terminated without proof.
% 4.99/1.10  
% 4.99/1.10  **** run 45 fork 4 starts with strategy
% 4.99/1.10  
% 4.99/1.10  **** run 47 fork 6 starts with strategy
% 4.99/1.10  {"max_dseconds":10,"strategy":["unit"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 4.99/1.10  {"max_dseconds":10,"strategy":["unit"],"weight_select_ratio":100,"query_preference":0}
% 5.79/1.12  
% 5.79/1.12  **** run 41 fork 0 starts with strategy
% 5.79/1.12  {"max_dseconds":10,"sine":5,"strategy":["negative_pref"],"query_preference":0}
% 5.79/1.12  
% 5.79/1.12  **** run 43 fork 2 starts with strategy
% 5.79/1.12  {"max_dseconds":10,"strategy":["hardness_pref"],"weight_select_ratio":100,"query_preference":0}
% 5.79/1.15  
% 5.79/1.15  fork 0: search finished without proof.
% 5.79/1.17  
% 5.79/1.17  **** run 49 fork 0 starts with strategy
% 5.79/1.17  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":1}
% 12.52/2.03  
% 12.52/2.03  
% 12.52/2.03  fork 5: search terminated without proof.
% 12.52/2.04  
% 12.52/2.04  
% 12.52/2.04  fork 7: search terminated without proof.
% 12.52/2.05  
% 12.52/2.05  **** run 54 fork 5 starts with strategy
% 12.52/2.05  {"max_dseconds":10,"strategy":["hardness_pref"],"query_preference":0,"weight_select_ratio":20,"depth_penalty":50,"length_penalty":100}
% 13.17/2.07  
% 13.17/2.07  **** run 48 fork 7 starts with strategy
% 13.17/2.07  {"max_dseconds":10,"strategy":["negative_pref"],"query_preference":1}
% 13.17/2.07  
% 13.17/2.07  
% 13.17/2.07  fork 1: search terminated without proof.
% 13.34/2.11  
% 13.34/2.11  **** run 50 fork 1 starts with strategy
% 13.34/2.11  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":1,"var_weight":1,"weight_select_ratio":100,"repeat_var_weight":1}
% 13.67/2.12  
% 13.67/2.12  
% 13.67/2.12  fork 6: search terminated without proof.
% 13.67/2.13  
% 13.67/2.13  
% 13.67/2.13  fork 4: search terminated without proof.
% 13.67/2.14  
% 13.67/2.14  
% 13.67/2.14  fork 3: search terminated without proof.
% 13.67/2.14  
% 13.67/2.14  fork 2: search finished without proof.
% 13.67/2.15  
% 13.67/2.15  **** run 55 fork 6 starts with strategy
% 13.67/2.15  {"length_penalty":100,"query_preference":0,"strategy":["negative_pref"],"max_dseconds":10}
% 13.67/2.15  
% 13.67/2.15  **** run 53 fork 4 starts with strategy
% 13.67/2.15  {"max_dseconds":10,"strategy":["unit"],"query_preference":1}
% 13.67/2.16  
% 13.67/2.16  **** run 52 fork 3 starts with strategy
% 13.67/2.16  {"max_dseconds":10,"strategy":["unit"],"query_preference":0}
% 13.67/2.17  
% 13.67/2.17  **** run 51 fork 2 starts with strategy
% 13.67/2.17  {"max_dseconds":10,"strategy":["query_focus","double"],"query_preference":1}
% 13.67/2.25  
% 13.67/2.25  
% 13.67/2.25  fork 0: search terminated without proof.
% 14.42/2.27  
% 14.42/2.27  **** run 57 fork 0 starts with strategy
% 14.42/2.27  {"max_dseconds":10,"strategy":["positive_pref"],"query_preference":0}
% 19.38/3.09  
% 19.38/3.09  
% 19.38/3.09  fork 5: search terminated without proof.
% 20.77/3.09  
% 20.77/3.09  
% 20.77/3.09  fork 7: search terminated without proof.
% 20.77/3.11  
% 20.77/3.11  **** run 56 fork 7 starts with strategy
% 20.77/3.11  {"strategy":["hardness_pref","max_weight"],"length_penalty":100,"depth_penalty":50,"max_depth":3,"var_weight":10,"repeat_var_weight":10,"max_dseconds":10}
% 21.41/3.13  
% 21.41/3.13  **** run 62 fork 5 starts with strategy
% 21.41/3.13  {"weight_select_ratio":100,"length_penalty":100,"query_preference":1,"strategy":["query_focus"],"max_dseconds":10}
% 21.46/3.17  
% 21.46/3.17  
% 21.46/3.17  fork 4: search terminated without proof.
% 21.46/3.19  
% 21.46/3.19  
% 21.46/3.19  fork 3: search terminated without proof.
% 21.46/3.19  
% 21.46/3.19  
% 21.46/3.19  fork 2: search terminated without proof.
% 21.46/3.20  
% 21.46/3.20  **** run 61 fork 4 starts with strategy
% 21.46/3.20  {"max_dseconds":10,"strategy":["unit"],"query_preference":0,"var_weight":1,"depth_penalty":100,"repeat_var_weight":1}
% 21.94/3.21  
% 21.94/3.21  **** run 60 fork 3 starts with strategy
% 21.94/3.21  {"max_dseconds":10,"strategy":["negative_pref"],"query_preference":1,"var_weight":1,"repeat_var_weight":1}
% 21.94/3.21  
% 21.94/3.21  **** run 59 fork 2 starts with strategy
% 21.94/3.21  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":1,"var_weight":1,"repeat_var_weight":1}
% 21.94/3.24  
% 21.94/3.24  
% 21.94/3.24  fork 6: search terminated without proof.
% 21.94/3.26  
% 21.94/3.26  **** run 63 fork 6 starts with strategy
% 21.94/3.26  {"max_dseconds":10,"strategy":["negative_pref"],"weight_select_ratio":20}
% 22.34/3.31  
% 22.34/3.31  
% 22.34/3.31  fork 0: search terminated without proof.
% 22.34/3.32  
% 22.34/3.32  **** run 65 fork 0 starts with strategy
% 22.34/3.32  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":2}
% 24.06/3.55  
% 24.06/3.55  fork 1: search finished without proof.
% 24.06/3.56  
% 24.06/3.56  **** run 58 fork 1 starts with strategy
% 24.06/3.56  {"var_weight":70,"repeat_var_weight":70,"max_depth":3,"query_preference":0,"strategy":["negative_pref"],"max_dseconds":10}
% 28.80/4.13  
% 28.80/4.13  
% 28.80/4.13  fork 7: search terminated without proof.
% 28.80/4.15  
% 28.80/4.15  **** run 64 fork 7 starts with strategy
% 28.80/4.15  {"max_dseconds":10,"strategy":["hardness_pref"],"query_preference":0}
% 29.12/4.23  
% 29.12/4.23  
% 29.12/4.23  fork 3: search terminated without proof.
% 29.12/4.23  
% 29.12/4.23  
% 29.12/4.23  fork 2: search terminated without proof.
% 29.81/4.25  
% 29.81/4.25  **** run 67 fork 2 starts with strategy
% 29.81/4.25  {"max_dseconds":10,"strategy":["query_focus","positive_pref"],"query_preference":0}
% 29.81/4.27  
% 29.81/4.27  **** run 68 fork 3 starts with strategy
% 29.81/4.27  {"max_dseconds":10,"strategy":["query_focus","unit"],"query_preference":1}
% 30.13/4.28  
% 30.13/4.28  
% 30.13/4.28  fork 6: search terminated without proof.
% 30.13/4.29  
% 30.13/4.29  
% 30.13/4.29  fork 4: search terminated without proof.
% 30.13/4.30  
% 30.13/4.30  **** run 69 fork 4 starts with strategy
% 30.13/4.30  {"max_dseconds":10,"strategy":["query_focus","max_ground_weight"],"query_preference":1}
% 30.13/4.31  
% 30.13/4.31  **** run 71 fork 6 starts with strategy
% 30.13/4.31  {"max_dseconds":10,"strategy":["hardness_pref","max_ground_weight"],"query_preference":0}
% 30.13/4.37  
% 30.13/4.37  
% 30.13/4.37  fork 0: search terminated without proof.
% 30.13/4.40  
% 30.13/4.40  
% 30.13/4.40  fork 5: search terminated without proof.
% 30.13/4.40  
% 30.13/4.40  **** run 73 fork 0 starts with strategy
% 30.13/4.40  {"max_dseconds":10,"strategy":["query_focus","positive_pref"],"query_preference":1}
% 30.13/4.42  
% 30.13/4.42  **** run 70 fork 5 starts with strategy
% 30.13/4.42  {"max_dseconds":10,"strategy":["query_focus","unit"],"query_preference":2}
% 32.25/4.60  
% 32.25/4.60  
% 32.25/4.60  fork 1: search terminated without proof.
% 32.25/4.63  
% 32.25/4.63  **** run 66 fork 1 starts with strategy
% 32.25/4.63  {"max_dseconds":10,"strategy":["query_focus","unit"],"query_preference":0}
% 37.66/5.28  
% 37.66/5.28  
% 37.66/5.28  fork 2: search terminated without proof.
% 37.66/5.30  
% 37.66/5.30  fork 7: search finished without proof.
% 37.66/5.30  
% 37.66/5.30  **** run 75 fork 2 starts with strategy
% 37.66/5.30  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":3}
% 37.66/5.31  
% 37.66/5.31  **** run 72 fork 7 starts with strategy
% 37.66/5.31  {"max_dseconds":10,"strategy":["query_focus"],"query_preference":1,"depth_penalty":100}
% 38.06/5.32  
% 38.06/5.32  
% 38.06/5.32  fork 3: search terminated without proof.
% 38.06/5.32  No candidate clauses found.
% 38.06/5.32  
% 38.06/5.32  
% 38.06/5.32  fork 2: search terminated without proof.
% 38.06/5.33  
% 38.06/5.33  
% 38.06/5.33  fork 4: search terminated without proof.
% 38.06/5.33  
% 38.06/5.33  
% 38.06/5.33  fork 6: search terminated without proof.
% 38.06/5.34  
% 38.06/5.34  **** run 83 fork 2 starts with strategy
% 38.06/5.34  {"max_dseconds":50,"strategy":["negative_pref"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 38.06/5.34  
% 38.06/5.34  **** run 77 fork 4 starts with strategy
% 38.06/5.34  {"max_dseconds":10,"strategy":["negative_pref"],"max_weight":40,"query_preference":0}
% 38.31/5.35  
% 38.31/5.35  **** run 79 fork 6 starts with strategy
% 38.31/5.35  {"max_dseconds":50,"strategy":["negative_pref"],"query_preference":0}
% 38.31/5.35  
% 38.31/5.35  **** run 76 fork 3 starts with strategy
% 38.31/5.35  {"max_dseconds":10,"strategy":["negative_pref"],"max_depth":5,"query_preference":0}
% 38.31/5.37  
% 38.31/5.37  fork 4: search finished without proof.
% 38.31/5.38  
% 38.31/5.38  **** run 85 fork 4 starts with strategy
% 38.31/5.38  {"max_dseconds":50,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0,"var_weight":70,"repeat_var_weight":70}
% 38.95/5.43  
% 38.95/5.43  
% 38.95/5.43  fork 0: search terminated without proof.
% 38.95/5.45  
% 38.95/5.45  **** run 81 fork 0 starts with strategy
% 38.95/5.45  {"max_dseconds":50,"strategy":["negative_pref"],"weight_select_ratio":100,"query_preference":0}
% 38.95/5.47  
% 38.95/5.47  
% 38.95/5.47  fork 5: search terminated without proof.
% 39.37/5.49  
% 39.37/5.49  **** run 78 fork 5 starts with strategy
% 39.37/5.49  {"max_dseconds":10,"strategy":["negative_pref"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 40.47/5.73  
% 40.47/5.73  
% 40.47/5.73  fork 1: search terminated without proof.
% 40.47/5.75  
% 40.47/5.75  **** run 74 fork 1 starts with strategy
% 40.47/5.75  {"max_dseconds":10,"strategy":["unit"],"query_preference":1,"reverse_clauselist":1}
% 45.25/6.34  
% 45.25/6.34  
% 45.25/6.34  fork 7: search terminated without proof.
% 45.25/6.35  
% 45.25/6.35  **** run 80 fork 7 starts with strategy
% 45.25/6.35  {"max_dseconds":50,"sine":5,"strategy":["negative_pref"],"query_preference":0}
% 45.25/6.38  
% 45.25/6.38  fork 7: search finished without proof.
% 45.25/6.38  
% 45.25/6.38  
% 45.25/6.38  fork 3: search terminated without proof.
% 45.25/6.40  
% 45.25/6.40  **** run 88 fork 7 starts with strategy
% 45.25/6.40  {"max_dseconds":50,"strategy":["query_focus"],"query_preference":1}
% 45.25/6.41  
% 45.25/6.41  **** run 84 fork 3 starts with strategy
% 45.25/6.41  {"max_dseconds":50,"strategy":["unit"],"weight_select_ratio":100,"query_preference":0}
% 46.24/6.57  
% 46.24/6.57  
% 46.24/6.57  fork 5: search terminated without proof.
% 46.24/6.60  
% 46.24/6.60  **** run 86 fork 5 starts with strategy
% 46.24/6.60  {"max_dseconds":50,"strategy":["unit"],"query_preference":0,"weight_select_ratio":100,"depth_penalty":100,"length_penalty":100}
% 47.02/6.62  
% 47.02/6.62  
% 47.02/6.62  result: proof found
% 47.02/6.62  for /export/starexec/sandbox2/benchmark/theBenchmark.p 
% 47.02/6.62  by run 79 fork 6 strategy {"max_dseconds":50,"strategy":["negative_pref"],"query_preference":0}
% 47.02/6.62  % SZS status Unsatisfiable for /export/starexec/sandbox2/benchmark/theBenchmark.p 
% 47.02/6.62  
% 47.02/6.62  % SZS output start CNFRefutation for /export/starexec/sandbox2/benchmark/theBenchmark.p 
% See solution above
% 47.02/6.62  
% 47.02/6.62  run 79 fork 6 statistics:
% 47.02/6.62  ----------------------------------
% 47.02/6.62  this run seconds: 0.409249
% 47.02/6.62  total seconds: 5.308673
% 47.02/6.62  stat_given_used: 2362
% 47.02/6.62  stat_given_used_at_endgame: 0
% 47.02/6.62  stat_given_candidates:   6320
% 47.02/6.62  stat_given_candidates_at_endgame: 0
% 47.02/6.62  stat_given_candidates_h: 0
% 47.02/6.62  stat_binres_derived_cl:   95137
% 47.02/6.62  stat_binres_derived_cl_h: 0
% 47.02/6.62  stat_factor_derived_cl: 14
% 47.02/6.62  stat_para_derived_cl: 0
% 47.02/6.62  stat_tautologies_discarded: 22
% 47.02/6.62  stat_forward_subsumed: 32124
% 47.02/6.62  stat_derived_cut: 0
% 47.02/6.62  stat_derived_rewritten: 0
% 47.02/6.62  stat_weight_discarded_building: 0
% 47.02/6.62  stat_weight_discarded_cl: 0
% 47.02/6.62  stat_internlimit_discarded_cl: 0
% 47.02/6.62  stat_simplified:  0 simplified 0 derived 0 given
% 47.02/6.62  stat_kept_cl: 63004
% 47.02/6.62  stat_built_cl: 67728
% 47.02/6.62  stat_hyperres_partial_cl: 0
% 47.02/6.62  stat_made_rewriters: 0
% 47.02/6.62  stat_backward_subsumed: 0
% 47.02/6.62  stat_propagated_subsumed: 0
% 47.02/6.62  stat_clsubs_attempted:                    152212
% 47.02/6.62  stat_clsubs_fact_groundunit_found:             9
% 47.02/6.62  stat_clsubs_rule_groundunit_found:            23
% 47.02/6.62  stat_clsubs_top_meta_attempted:            3766952
% 47.02/6.62  stat_clsubs_top_meta_failed:               3614740
% 47.02/6.62  stat_clsubs_top_meta_nonpref_attempted:             3766952
% 47.02/6.62  stat_clsubs_top_meta_nonpref_succeeded:              855313
% 47.02/6.62  stat_clsubs_top_meta_pref_attempted:                 855313
% 47.02/6.62  stat_clsubs_top_meta_pref1_succeeded:                373448
% 47.02/6.62  stat_clsubs_top_meta_pref2_succeeded:                186918
% 47.02/6.62  stat_clsubs_top_meta_pref3_succeeded:                152212
% 47.02/6.62  stat_clsubs_top_meta_pref_succeeded:                 152212
% 47.02/6.62  stat_clsubs_meta_attempted:               168039
% 47.02/6.62  stat_clsubs_meta_failed:                   28507
% 47.02/6.62  stat_clsubs_predsymbs_attempted:               0
% 47.02/6.62  stat_clsubs_unit_attempted:               139038
% 47.02/6.62  stat_clsubs_full_attempted:                13174
% 47.02/6.62  stat_forwardsubs_attempted:                95128
% 47.02/6.62  stat_lit_hash_added:                  78008
% 47.02/6.62  stat_lit_hash_computed:              236180
% 47.02/6.62  stat_lit_hash_match_found:            32156
% 47.02/6.62  stat_lit_hash_match_miss:            200703
% 47.02/6.62  stat_lit_hash_cut_ok:                     0
% 47.02/6.62  stat_lit_strong_cut_ok:                   0
% 47.02/6.62  stat_lit_hash_subsume_ok:             32124
% 47.02/6.62  clqueue els 10000000 used 1
% 47.02/6.62  clactive els 10000000 used 2363
% 47.02/6.62  clactivesubsume els 10000000 used 12163
% 47.02/6.62  queue_termbuf els 200000000 used 3858327
% 47.02/6.62  hyper_termbuf els 100000000 used 1
% 47.02/6.62  active_termbuf els 100000000 used 84031
% 47.02/6.62  varstack els 5000 last used 1
% 47.02/6.62  given_termbuf els 10000000 last used 21
% 47.02/6.62  simplified_termbuf els 10000000 last used 1
% 47.02/6.62  derived_termbuf els 10000000 last used 3
% 47.02/6.62  wr_mallocs: 47273
% 47.02/6.62  wr_callocs: 19
% 47.02/6.62  wr_reallocs: 19589
% 47.02/6.62  wr_frees: 2
% 47.02/6.62  wr_malloc_bytes: 4164757252
% 47.02/6.62  wr_calloc_bytes: 96065504
% 47.02/6.62  wr_realloc_bytes: 3581256
% 47.02/6.62  wr_realloc_freebytes: 0
% 47.02/6.62  ----------------------------------
%------------------------------------------------------------------------------