Skip to content

Commit e8f071c

Browse files
Skeleton implementation of Integrator
1 parent 68035e4 commit e8f071c

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/integrators/mod.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
use crate::common::*;
2+
3+
pub mod testintegrator;
4+
5+
pub trait Integrator {
6+
7+
}

src/integrators/testintegrator.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
use crate::common::*;
2+

0 commit comments

Comments
 (0)