Statistiques
| Révision :

root / approxBasisSollya / approxbaso.c

Historique | Voir | Annoter | Télécharger (751 octet)

1 291 storres
/** @file approxbaso.c */
2 291 storres
/******************************************************************************/
3 291 storres
/**
4 291 storres
 * Function approximation basis defined and evaluated in Sollya.
5 291 storres
 *
6 291 storres
 * @author: S.T.
7 291 storres
 * @date: 2018-03-07
8 291 storres
 *
9 291 storres
 */
10 291 storres
11 291 storres
/* Includes according to the "general to particular" rule. */
12 291 storres
/* includes of system headers */
13 293 storres
#include <stdio.h>
14 291 storres
15 291 storres
/* includes of project headers */
16 293 storres
#include <pobyso.h>
17 291 storres
18 291 storres
/* includes of local headers */
19 293 storres
#include <approxbaso.h>
20 293 storres
#include <read-lines-from-file.h>
21 291 storres
22 291 storres
/* Types, constants and macros definitions */
23 291 storres
24 291 storres
/* Global variables */
25 291 storres
26 291 storres
/* Functions */
27 291 storres
28 293 storres
/** @see approxbaso.h#read_basis_from_handle */
29 293 storres
struct ApproxBasisSollya*
30 293 storres
abs_read_basis_from_handle(FILE* fileHandle)
31 291 storres
{
32 293 storres
  rlff_readLines_t* linesRead = NULL;
33 293 storres
  return NULL;
34 291 storres
}