Darwin Neuroevolution Framework
runtime.h
1 // Copyright 2020 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <filesystem>
18 namespace fs = std::filesystem;
19 
20 namespace core {
21 
23 class Runtime {
24  public:
26  static void init(int argc, char* argv[], const char* home_path = nullptr);
27 
29  static const fs::path& darwinHomePath();
30 
32  static const char* buildString();
33 
34  private:
35  static fs::path darwin_home_path_;
36 };
37 
38 } // namespace core
static const fs::path & darwinHomePath()
The Darwin home path (containing configuration and log files)
Definition: runtime.cpp:45
Generic utilities.
Definition: exception.h:24
static const char * buildString()
A signature string describing the current build.
Definition: runtime.cpp:50
Interface to the Darwin runtime environment.
Definition: runtime.h:23
static void init(int argc, char *argv[], const char *home_path=nullptr)
Initialize the Darwin runtime.
Definition: runtime.cpp:32