Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
mathlink.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* mathlink.h (C) 2013 */
9/* */
10/*---------------------------------------------------------------------------*/
11#ifndef MATHEMATICA_LINK_H
12#define MATHEMATICA_LINK_H
13
14ARCANE_BEGIN_NAMESPACE
15
17public:
19 ~mathlink();
20public:
21 void link();
22 void unlink();
23public:
24 Integer Prime(Integer);
25private:
26 void skipAnyPacketsBeforeTheFirstReturnPacket();
27 void error();
28private:
29 void tests();
30 void testFactorInteger(Int64);
31 void testLinearProgramming(ArrayView<Integer>);
32private:
33 ISubDomain *m_sub_domain;
34 MLENV mathenv;
35 MLINK mathlnk;
36 Timer *mathtmr;
37};
38ARCANE_END_NAMESPACE
39#endif // MATHEMATICA_LINK_H
Classe de base d'un service.
Interface du gestionnaire d'un sous-domaine.
Definition ISubDomain.h:74
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Structure contenant les informations pour créer un service.
Gestion d'un timer.
Definition Timer.h:62