59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
//This file is part of Bertini 2.
|
|
//
|
|
//bertini_python.hpp is free software: you can redistribute it and/or modify
|
|
//it under the terms of the GNU General Public License as published by
|
|
//the Free Software Foundation, either version 3 of the License, or
|
|
//(at your option) any later version.
|
|
//
|
|
//bertini_python.hpp is distributed in the hope that it will be useful,
|
|
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
//GNU General Public License for more details.
|
|
//
|
|
//You should have received a copy of the GNU General Public License
|
|
//along with bertini_python.hpp. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// Copyright(C) 2016-2018 by Bertini2 Development Team
|
|
//
|
|
// See <http://www.gnu.org/licenses/> for a copy of the license,
|
|
// as well as COPYING. Bertini2 is provided with permitted
|
|
// additional terms in the b2/licenses/ directory.
|
|
|
|
// individual authors of this file include:
|
|
//
|
|
// James Collins
|
|
// West Texas A&M University
|
|
// Spring 2016
|
|
//
|
|
// silviana amethyst
|
|
// University of Wisconsin - Eau Claire
|
|
// Spring 2018
|
|
//
|
|
//
|
|
// python/bertini_python.hpp: the main header file for the python interface for bertini.
|
|
|
|
#pragma once
|
|
#ifndef BERTINI_PYTHON_HPP
|
|
#define BERTINI_PYTHON_HPP
|
|
|
|
#include "python_common.hpp"
|
|
#include "containers_export.hpp"
|
|
#include "mpfr_export.hpp"
|
|
#include "random_export.hpp"
|
|
#include "eigenpy_interaction.hpp"
|
|
#include "function_tree_export.hpp"
|
|
#include "system_export.hpp"
|
|
#include "parser_export.hpp"
|
|
#include "tracker_export.hpp"
|
|
#include "tracker_observers.hpp"
|
|
#include "endgame_export.hpp"
|
|
#include "tracker_observers.hpp"
|
|
#include "endgame_observers.hpp"
|
|
#include "detail.hpp"
|
|
#include "logging.hpp"
|
|
#include "zero_dim_export.hpp"
|
|
|
|
#endif
|
|
|
|
|