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.
Ticket Comment Diff – NEMO

Changes between Initial Version and Version 1 of Ticket #2201, comment 5


Ignore:
Timestamp:
2019-01-15T18:41:19+01:00 (5 years ago)
Author:
nemo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2201, comment 5

    initial v1  
    11Sorry , wrong copypaste. I have the same original and preprocessed ones (same as yours) 
    2 {{{#!factor 
     2{{{#!f 
    33CHARACTER(len=32), DIMENSION(nbdelay), PUBLIC ::   c_delaylist = (/ 'cflice', 'fwb' /) 
    44}}} 
    55 
    66I'm saying you're not allowed to initialize (using an array constructor) at declaration an array of characters with characters of different length. So 
    7 {{{#!factor 
     7{{{#!f 
    88CHARACTER(len=32), DIMENSION(nbdelay), PUBLIC ::   c_delaylist = (/ 'cflice', 'fwb   ' /)  
    99}}} 
    1010 
    1111works, as well as 
    12 {{{#!factor 
     12{{{#!f 
    1313CHARACTER(len=32), DIMENSION(nbdelay), PUBLIC ::   c_delaylist = (/ character(32):: 'cflice', 'fwb'/) 
    1414}}}