FastPolyEval  1.0
Fast Evaluation of Real and Complex Polynomials
main.h
Go to the documentation of this file.
1 //
2 // main.h
3 //
4 // Authors: Nicolae Mihalache & François Vigneron
5 //
6 // This software is released under BSD licence, with an attribution clause (see Licence file).
7 // Please cite the reference below if you use or distribute this software.
8 //
9 // • [1] R. Anton, N. Mihalache & F. Vigneron. Fast evaluation of real and complex polynomials. 2022.
10 // https://hal.archives-ouvertes.fr/hal-03820369
11 //
12 // Copyright 2022 Univ. Paris-Est Créteil & Univ. de Reims Champagne-Ardenne.
13 //
14 
580 #ifndef main_h
581 #define main_h
582 
583 #define APP_OK 0
584 #define APP_ERROR 1
585 #define APP_PARAMS 2
586 
588 typedef int (* mainFuncf)(int argv, const char **args);
589 
591 typedef int (* mainFunc)(long prec, int argv, const char **args);
592 
593 #endif /* main_h */
int(* mainFuncf)(int argv, const char **args)
The signature of a main function of an app in this project with machine numbers.
Definition: main.h:588
int(* mainFunc)(long prec, int argv, const char **args)
The signature of a main function of an app in this project with arbitrary precision.
Definition: main.h:591