Skip to content
Snippets Groups Projects
Select Git revision
  • f5e1bf08aec4c7e98f870ffdbd206f164a450fcb
  • develop default protected
  • feature/gmsh-reader
  • origin/stage/bouguettaia
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • feature/escobar-smoother
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

Array.hpp

Blame
    • Stéphane Del Pino's avatar
      f5e1bf08
      Replace remaining Kokkos::View<T*> by Array<T> · f5e1bf08
      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.
      f5e1bf08
      History
      Replace remaining Kokkos::View<T*> by Array<T>
      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