@@ -323,7 +323,6 @@ class set_get_option_cmd : public cmd {
323
323
symbol m_produce_assertions;
324
324
symbol m_regular_output_channel;
325
325
symbol m_diagnostic_output_channel;
326
- symbol m_random_seed;
327
326
symbol m_verbosity;
328
327
symbol m_global_decls;
329
328
symbol m_global_declarations;
@@ -338,7 +337,7 @@ class set_get_option_cmd : public cmd {
338
337
s == m_interactive_mode || s == m_produce_proofs || s == m_produce_unsat_cores || s == m_produce_unsat_assumptions ||
339
338
s == m_produce_models || s == m_produce_assignments ||
340
339
s == m_regular_output_channel || s == m_diagnostic_output_channel ||
341
- s == m_random_seed || s == m_verbosity || s == m_global_decls || s == m_global_declarations ||
340
+ s == m_verbosity || s == m_global_decls || s == m_global_declarations ||
342
341
s == m_produce_assertions || s == m_reproducible_resource_limit;
343
342
}
344
343
@@ -359,7 +358,6 @@ class set_get_option_cmd : public cmd {
359
358
m_produce_assertions (" :produce-assertions" ),
360
359
m_regular_output_channel (" :regular-output-channel" ),
361
360
m_diagnostic_output_channel (" :diagnostic-output-channel" ),
362
- m_random_seed (" :random-seed" ),
363
361
m_verbosity (" :verbosity" ),
364
362
m_global_decls (" :global-decls" ),
365
363
m_global_declarations (" :global-declarations" ),
@@ -503,10 +501,7 @@ class set_option_cmd : public set_get_option_cmd {
503
501
}
504
502
505
503
void set_next_arg (cmd_context & ctx, rational const & val) override {
506
- if (m_option == m_random_seed) {
507
- ctx.set_random_seed (to_unsigned (val));
508
- }
509
- else if (m_option == m_reproducible_resource_limit) {
504
+ if (m_option == m_reproducible_resource_limit) {
510
505
ctx.params ().set_rlimit (to_unsigned (val));
511
506
}
512
507
else if (m_option == m_verbosity) {
@@ -594,9 +589,6 @@ class get_option_cmd : public set_get_option_cmd {
594
589
else if (opt == m_global_decls || opt == m_global_declarations) {
595
590
print_bool (ctx, ctx.global_decls ());
596
591
}
597
- else if (opt == m_random_seed) {
598
- print_unsigned (ctx, ctx.random_seed ());
599
- }
600
592
else if (opt == m_verbosity) {
601
593
print_unsigned (ctx, get_verbosity_level ());
602
594
}
0 commit comments