Skip to content

Commit

Permalink
rename proof to prover
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachJHansen authored and teiesti committed Aug 21, 2024
1 parent f1fee20 commit f0c2054
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/command_line/procedures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use {
syntax_tree::{asp, fol, Node as _},
translating::{completion::completion, gamma::gamma, tau_star::tau_star},
verifying::{
proof::{vampire::Vampire, Prover, Report, Status, Success},
prover::{vampire::Vampire, Prover, Report, Status, Success},
task::{
external_equivalence::ExternalEquivalenceTask,
strong_equivalence::StrongEquivalenceTask, Task,
Expand Down
2 changes: 1 addition & 1 deletion src/verifying/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod outline;
pub mod problem;
pub mod proof;
pub mod prover;
pub mod task;
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use {
crate::verifying::{
problem::Problem,
proof::{Prover, Report, Status, StatusExtractionError},
prover::{Prover, Report, Status, StatusExtractionError},
},
std::{
fmt::{self, Display},
Expand Down

0 comments on commit f0c2054

Please sign in to comment.