Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • feature/add-fft-interface
  • feature/expose-rnumber-from-simulations
  • feature/particle_state_generation_with_variable_box_size
  • feature/forcing-unit-test
  • feature/dealias-check2
  • bugfix/check_field_exists
  • feature/dealias-check
  • v3.x
  • feature/particles-vectorization
  • 6.2.4
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.0
  • 6.0.0
  • 5.8.1
  • 5.8.0
  • 5.7.2
  • 5.7.1
  • 5.7.0
  • 5.6.0
  • 5.5.1
  • 5.5.0
  • 5.4.7
  • 5.4.6
  • 5.4.5
  • 5.4.4
  • 5.4.3
30 results

NSVE_no_output.hpp

Blame
  • user avatar
    Chichi Lalescu authored
    for scaling tests, if we don't want to get stuck on I/O things...
    b3a9f542
    History
    NSVE_no_output.hpp 517 B
    #ifndef NSVE_NO_OUTPUT_HPP
    #define NSVE_NO_OUTPUT_HPP
    
    #include "full_code/NSVE.hpp"
    
    template <typename rnumber>
    class NSVE_no_output: public NSVE<rnumber>
    {
        public:
        NSVE_no_output(
                const MPI_Comm COMMUNICATOR,
                const std::string &simulation_name):
            NSVE<rnumber>(
                    COMMUNICATOR,
                    simulation_name){}
        ~NSVE_no_output(){}
        int write_checkpoint(void)
        {
            return 0;
        }
        int read_parameters(void);
    };
    
    #endif//NSVE_NO_OUTPUT_HPP