The Sparta Modeling Framework
Loading...
Searching...
No Matches
SkeletonSimulator.hpp
1// <SkeletonSimulation.hpp> -*- C++ -*-
2
3#pragma once
4
5#include <cinttypes>
6
8
13{
14public:
15
20 SkeletonSimulator(sparta::Scheduler & scheduler, bool be_noisy);
21
22 // Tear it down
23 virtual ~SkeletonSimulator();
24
25private:
26
28 // Setup
29
32 void buildTree_() override;
33
35 void configureTree_() override;
36
39 void bindTree_() override;
40
42 const bool be_noisy_ = false;
43};
44
Simulation setup base class.
SkeletonSimulator which builds the model and configures it.
A class that lets you schedule events now and in the future.
Simulator which builds a sparta DeviceTree.