Select Git revision
-
Stéphane Del Pino authored
- Remaining Kokkos::View where not related to item or sub-item values - SubItemValuePerItem now use Array internally - SubItemValuePerItem<const T>(connectivity) is now invalid since allocated data is constant. SubItemValuePerItem<const T> is to be used as a view of SubItemValuePerItem<T>, which can be initialized properly.
Stéphane Del Pino authored- Remaining Kokkos::View where not related to item or sub-item values - SubItemValuePerItem now use Array internally - SubItemValuePerItem<const T>(connectivity) is now invalid since allocated data is constant. SubItemValuePerItem<const T> is to be used as a view of SubItemValuePerItem<T>, which can be initialized properly.
ConsoleManager.hpp 227 B
#ifndef CONSOLE_MANAGER_HPP
#define CONSOLE_MANAGER_HPP
#include <string>
struct ConsoleManager
{
static bool isTerminal(std::ostream& os);
static void init(const std::string& colorize);
};
#endif // CONSOLE_MANAGER_HPP