Skip to content
Snippets Groups Projects
Select Git revision
  • 35204038dda88f623588d4545909e1c8dff7374c
  • master default protected
  • optimize_trapping
  • script_devel
  • parallel_trapping
  • unify_iterations
  • containers-m10
  • magma_refinement
  • release9
  • enable_svd
  • parallel_angles_gmu
  • containers-m8
  • parallel_angles
  • profile_omp_leonardo
  • test_nvidia_profiler
  • containers
  • shaditest
  • test1
  • main
  • 3-error-in-run-the-program
  • experiment
  • NP_TMcode-M10a.03
  • NP_TMcode-M10a.02
  • NP_TMcode-M10a.01
  • NP_TMcode-M10a.00
  • NP_TMcode-M9.01
  • NP_TMcode-M9.00
  • NP_TMcode-M8.03
  • NP_TMcode-M8.02
  • NP_TMcode-M8.01
  • NP_TMcode-M8.00
  • NP_TMcode-M7.00
  • v0.0
33 results

List.h

Blame
  • np_sphere.cpp 590 B
    /*! \file np_sphere.cpp
     */
    
    #include <cstdio>
    #include <string>
    #include "include/Configuration.h"
    
    using namespace std;
    
    extern void sphere();
    
    /*! \brief Main program entry point.
     *
     * This is the starting point of the execution flow. Here we may choose
     * how to configure the code, e.g. by loading a legacy configuration file
     * or some otherwise formatted configuration data set. The code can be
     * linked to a luncher script or to a GUI oriented application that performs
     * the configuration and runs the main program.
     */
    int main(int argc, char **argv) {
    	sphere();
    	return 0;
    }