39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
|
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
||
|
|
||
|
|
||
|
/* ***************************************************************************
|
||
|
*
|
||
|
* FastFlow is free software; you can redistribute it and/or modify it
|
||
|
* under the terms of the GNU Lesser General Public License version 3 as
|
||
|
* published by the Free Software Foundation.
|
||
|
* Starting from version 3.0.1 FastFlow is dual licensed under the GNU LGPLv3
|
||
|
* or MIT License (https://github.com/ParaGroup/WindFlow/blob/vers3.x/LICENSE.MIT)
|
||
|
*
|
||
|
* This program 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 Lesser General Public
|
||
|
* License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with this program; if not, write to the Free Software Foundation,
|
||
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
*
|
||
|
****************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef FF_FF_HPP
|
||
|
#define FF_FF_HPP
|
||
|
|
||
|
#include <ff/config.hpp>
|
||
|
#include <ff/node.hpp>
|
||
|
#include <ff/multinode.hpp>
|
||
|
#include <ff/pipeline.hpp>
|
||
|
#include <ff/farm.hpp>
|
||
|
#include <ff/all2all.hpp>
|
||
|
#include <ff/combine.hpp>
|
||
|
#include <ff/optimize.hpp>
|
||
|
#include<ff/ordering_policies.hpp>
|
||
|
#include<ff/graph_utils.hpp>
|
||
|
|
||
|
#endif /* FF_FF_HPP */
|