summaryrefslogtreecommitdiff
path: root/src/simulation/two_level.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/two_level.rs')
-rw-r--r--src/simulation/two_level.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/simulation/two_level.rs b/src/simulation/two_level.rs
new file mode 100644
index 0000000..38a65d9
--- /dev/null
+++ b/src/simulation/two_level.rs
@@ -0,0 +1,26 @@
+use super::c64;
+use super::time_evolution::State;
+use ndarray::prelude::*;
+
+pub struct TwoLevel {
+ state: Array1<c64>,
+}
+
+impl TwoLevel {
+ pub fn new(alpha: c64, beta: c64) -> TwoLevel {
+ TwoLevel {
+ state: array![alpha, beta],
+ }
+ }
+}
+
+impl State for TwoLevel {
+ fn fibrate(&self) -> Array1<c64> {
+ self.state.clone()
+ }
+
+ fn evolve<G: super::time_evolution::MatrixGen>(mut self, t: f64) -> Self {
+ self.state = self.state.dot(&G::gen(t));
+ self
+ }
+}