Skip to content

Commit

Permalink
synth: move windowing
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Apr 18, 2024
1 parent 4316725 commit b35e930
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synth/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ mod basic;
mod filters;
mod incremental;
mod repair;
mod studies;
mod testbench;
mod windowing;

use crate::basic::basic_repair;
use crate::filters::can_be_repaired_from_arbitrary_state;
use crate::incremental::{IncrementalConf, IncrementalRepair};
use crate::repair::{
add_change_count, create_smt_ctx, RepairContext, RepairResult, RepairStatus, RepairVars,
};
use crate::studies::windowing::{Windowing, WindowingConf};
use crate::testbench::*;
use crate::windowing::{Windowing, WindowingConf};
use clap::{arg, Parser, ValueEnum};
use easy_smt as smt;
use libpatron::ir::{
Expand Down
1 change: 1 addition & 0 deletions synth/src/studies/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod windowing;
File renamed without changes.

0 comments on commit b35e930

Please sign in to comment.