New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 530 for trunk/AGRIF/LIB/WorkWithvarofsubroutineliste.c – NEMO

Ignore:
Timestamp:
2006-10-17T17:36:11+02:00 (18 years ago)
Author:
opalod
Message:

RB: update of the conv for IOM and NEC MPI library

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AGRIF/LIB/WorkWithvarofsubroutineliste.c

    r396 r530  
    33/*     CONV (converter) for Agrif (Adaptive Grid Refinement In Fortran)       */ 
    44/*                                                                            */ 
    5 /*     Copyright (C) 2005 Laurent Debreu (Laurent.Debreu@imag.fr)             */ 
     5/* Copyright or © or Copr. Laurent Debreu (Laurent.Debreu@imag.fr)            */ 
    66/*                        Cyril Mazauric (Cyril.Mazauric@imag.fr)             */ 
    7 /*                                                                            */ 
    8 /*     This program is free software; you can redistribute it and/or modify   */ 
    9 /*    it                                                                      */ 
    10 /*                                                                            */ 
    11 /*    This program is distributed in the hope that it will be useful,         */ 
    12 /*     but WITHOUT ANY WARRANTY; without even the implied warranty of         */ 
    13 /*     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          */ 
    14 /*    GNU General Public License for more details.                            */ 
    15 /*                                                                            */ 
     7/* This software is governed by the CeCILL-C license under French law and     */ 
     8/* abiding by the rules of distribution of free software.  You can  use,      */ 
     9/* modify and/ or redistribute the software under the terms of the CeCILL-C   */ 
     10/* license as circulated by CEA, CNRS and INRIA at the following URL          */ 
     11/* "http://www.cecill.info".                                                  */ 
     12/*                                                                            */ 
     13/* As a counterpart to the access to the source code and  rights to copy,     */ 
     14/* modify and redistribute granted by the license, users are provided only    */ 
     15/* with a limited warranty  and the software's author,  the holder of the     */ 
     16/* economic rights,  and the successive licensors  have only  limited         */ 
     17/* liability.                                                                 */ 
     18/*                                                                            */ 
     19/* In this respect, the user's attention is drawn to the risks associated     */ 
     20/* with loading,  using,  modifying and/or developing or reproducing the      */ 
     21/* software by the user in light of its specific status of free software,     */ 
     22/* that may mean  that it is complicated to manipulate,  and  that  also      */ 
     23/* therefore means  that it is reserved for developers  and  experienced      */ 
     24/* professionals having in-depth computer knowledge. Users are therefore      */ 
     25/* encouraged to load and test the software's suitability as regards their    */ 
     26/* requirements in conditions enabling the security of their systems and/or   */ 
     27/* data to be ensured and,  more generally, to use and operate it in the      */ 
     28/* same conditions as regards security.                                       */ 
     29/*                                                                            */ 
     30/* The fact that you are presently reading this means that you have had       */ 
     31/* knowledge of the CeCILL-C license and that you accept its terms.           */ 
     32/******************************************************************************/ 
     33/* version 1.0                                                                */ 
    1634/******************************************************************************/ 
    1735#include <stdio.h> 
     
    2139 
    2240/******************************************************************************/ 
    23 /*                    OPTI_1_ajoutvarofsubroutine                             */ 
     41/*                         ajoutvarofsubroutine_1                             */ 
    2442/******************************************************************************/ 
    2543/* Firstpass 1                                                                */ 
     
    2947/*                                                                            */ 
    3048/******************************************************************************/ 
    31 void OPTI_1_ajoutvarofsubroutine(listvar *listtoadd) 
    32 { 
    33    listvar *tmplist; 
    34     
    35    tmplist = (listvar *)NULL; 
     49void ajoutvarofsubroutine_1(listvar *listtoadd) 
     50{ 
     51 
    3652   if ( firstpass == 1 && VariableIsParameter == 0 && SaveDeclare == 0) 
    3753   { 
    38       tmplist = duplicatelistvar(listtoadd); 
     54      listduplicated = (listvar *)NULL; 
     55      duplicatelistvar(listtoadd); 
    3956      varofsubroutineliste = AddListvarToListvar 
    40                                                (tmplist,varofsubroutineliste,1); 
     57                                        (listduplicated,varofsubroutineliste,1); 
    4158   } 
    4259} 
     
    204221 
    205222/******************************************************************************/ 
    206 /*                COM_1_UpdatevarsubroutineWithvarofsubroutinelist            */ 
     223/*                UpdatevarsubroutineWithvarofsubroutinelist_1                */ 
    207224/******************************************************************************/ 
    208225/*  This subroutines is used to add the variable defined in common in the     */ 
     
    210227/*                                                                            */ 
    211228/******************************************************************************/ 
    212 void COM_1_UpdatevarsubroutineWithvarofsubroutinelist() 
     229void UpdatevarsubroutineWithvarofsubroutinelist_1() 
    213230{ 
    214231   listvar *parcours; 
     
    217234   int out; 
    218235    
     236   parcoursprec = (listvar * )NULL; 
    219237   parcours = varsubroutine; 
    220238   while ( parcours ) 
Note: See TracChangeset for help on using the changeset viewer.