From e8f071cb36a434d41c2ea8b863f3378a422e1a97 Mon Sep 17 00:00:00 2001 From: Sabyasachi Mukherjee Date: Mon, 20 May 2019 13:14:07 +0900 Subject: [PATCH] Skeleton implementation of Integrator --- src/integrators/mod.rs | 7 +++++++ src/integrators/testintegrator.rs | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 src/integrators/mod.rs create mode 100644 src/integrators/testintegrator.rs diff --git a/src/integrators/mod.rs b/src/integrators/mod.rs new file mode 100644 index 0000000..ba3df95 --- /dev/null +++ b/src/integrators/mod.rs @@ -0,0 +1,7 @@ +use crate::common::*; + +pub mod testintegrator; + +pub trait Integrator { + +} \ No newline at end of file diff --git a/src/integrators/testintegrator.rs b/src/integrators/testintegrator.rs new file mode 100644 index 0000000..9729c1c --- /dev/null +++ b/src/integrators/testintegrator.rs @@ -0,0 +1,2 @@ +use crate::common::*; +