]> git.localhorst.tv Git - blank.git/blobdiff - src/runtime.hpp
minor optimizations in chunk
[blank.git] / src / runtime.hpp
index 01f6cdd2c9b51df11afd0c453bc3d3a1e76939c4..014cd3224239aa5c28fa0d537e6ef9446523b31b 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef BLANK_RUNTIME_HPP_
 #define BLANK_RUNTIME_HPP_
 
+#include "app.hpp"
+
 #include <cstddef>
 
 
@@ -17,7 +19,7 @@ public:
                ERROR,
        };
 
-       Runtime();
+       Runtime() noexcept;
 
        void ReadArgs(int argc, const char *const *argv);
 
@@ -28,7 +30,7 @@ private:
        Mode mode;
        std::size_t n;
        std::size_t t;
-       unsigned int seed;
+       Application::Config config;
 
 };