Page MenuHomec4science

observer.cpp
No OneTemporary

File Metadata

Created
Sat, Oct 12, 22:13

observer.cpp

#include "observer.hpp"
#include <iostream>
using namespace std;
void KeepLast::operator()(const state_type& x, double t){
// cout<<"observing..."<<endl;
for(uint i=0;i<x.size();i++){
last[i] =x[i];
}
time=t;
// cout<<"observing done"<<endl;
}

Event Timeline