You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <container/small_vector.hpp>
|
|
|
|
#include "implicit_functions.hpp"
|
|
|
|
struct load_functions_result_t {
|
|
small_vector_mp<implicit_function_t<double, 3>> functions{};
|
|
bool success{};
|
|
};
|
|
|
|
load_functions_result_t load_functions(const std::string& filename);
|