view src/is_master_node.cc @ 268:61830a4f9ab9

Improve formatting
author Eugenio Gianniti <eugenio.gianniti@mail.polimi.it>
date Thu, 14 Aug 2014 12:26:55 +0200
parents 072aee55bb75
children f4d6ae912a08
line wrap: on
line source

/*
 Copyright (C) 2014 Eugenio Gianniti <eugenio.gianniti@mail.polimi.it>

 This program 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.

 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 General Public License for more
 details.

 You should have received a copy of the GNU General Public License along with
 this program; if not, see <http://www.gnu.org/licenses/>.
*/

#include <dolfin.h>
#include <octave/oct.h>
#include "dolfin_compat.h"

DEFUN_DLD (is_master_node, args, nargout,
"-*- texinfo -*-\n\
@deftypefn {Function File} {} \
is_master_process ()\n\
Return true if called on node zero.\n\
@end deftypefn")
{
  octave_value retval;
  int nargin = args.length ();

  if (nargin > 0 || nargout > 1)
    { print_usage (); }
  else
    {
#ifdef LATEST_DOLFIN
      retval = (dolfin::MPI::rank (MPI_COMM_WORLD) == 0);
#else
      // This works also in 1.4.0, but it is now deprecated
      retval = (dolfin::MPI::process_number () == 0);
#endif
    }

  return retval;
}