X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c77b7752704cc065993f337238a81c9f6d2cf20a..4d140762b2b9c8746cdd3b0680a7167867ba0ad9:/src/smpi/smpi_op.hpp diff --git a/src/smpi/smpi_op.hpp b/src/smpi/smpi_op.hpp deleted file mode 100644 index 167a346bac..0000000000 --- a/src/smpi/smpi_op.hpp +++ /dev/null @@ -1,33 +0,0 @@ -/* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team. - * All rights reserved. */ - -/* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ - -#ifndef SMPI_OP_HPP -#define SMPI_OP_HPP - -#include "src/smpi/smpi_info.hpp" - -namespace simgrid{ -namespace smpi{ - -class Op : public F2C{ - private: - MPI_User_function *func_; - bool is_commutative_; - bool is_fortran_op_; - public: - - Op(MPI_User_function * function, bool commutative); - bool is_commutative(); - bool is_fortran_op(); - void set_fortran_op(); - void apply(void *invec, void *inoutvec, int *len, MPI_Datatype datatype); - static Op* f2c(int id); -}; - -} -} - -#endif