Changes between Version 1 and Version 2 of BackwardIncompatibleChanges


Ignore:
Timestamp:
12/17/14 11:20:58 (9 years ago)
Author:
rlacroix
Comment:

Account for xios_set_timestep being readded

Legend:

Unmodified
Added
Removed
Modified
  • BackwardIncompatibleChanges

    v1 v2  
    2020  - `output_freq`, `sync_freq` and `split_freq` in `file` objects. 
    2121 
    22   Note that the special interface `xios_set_timestep` and the corresponding `xios_time` type have been removed. 
     22  Note that the old `xios_time` type have been removed. 
    2323 
    2424  The following code: 
     
    3838  }}} 
    3939  will become: 
     40  {{{ 
     41  PROGRAM test 
     42    USE xios 
     43    ... 
     44    TYPE(xios_duration) :: dtime 
     45    ... 
     46    CALL xios_get_handle("test",ctx_hdl) 
     47    CALL xios_set_current_context(ctx_hdl) 
     48    ... 
     49    dtime%second=3600 
     50    CALL xios_set_timestep(dtime) 
     51    ... 
     52  END PROGRAM test 
     53  }}} 
     54  or 
    4055  {{{ 
    4156  PROGRAM test