Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: szaghi/FLAP
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.4
Choose a base ref
...
head repository: szaghi/FLAP
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.6.5
Choose a head ref
  • 12 commits
  • 8 files changed
  • 2 contributors

Commits on Aug 19, 2015

  1. Configuration menu
    Copy the full SHA
    6b4f1c7 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2015

  1. Some minor fixes after to compile with IBM XL Fortran for Linux, V14.1

        Deleted "elemental" in fuction Upper_Case due to the following XLF
        following compiler error:
    
        "1513-209 (S) The result of an elemental function must be a
         nonpointer, nonallocatable scalar, and its type parameters must
         be constant expressions."
    
    This behaviour also occurs in Lib_VTK_IO:
    
    victorsndvg/Lib_VTK_IO@226c38e#diff-6952d71b75ad07086220a941f2a61ba7L538
    femparadmin committed Aug 20, 2015
    Configuration menu
    Copy the full SHA
    c9860e7 View commit details
    Browse the repository at this point in the history
  2. Bug on Intel Fortran Compiler 15.0.2?

    I get the following error:
    
    forrtl: severe (194): Run-Time Check Failure. The variable 'var$11762' is being used in '/home/.../FLAP/src/Data_Type_Command_Line_Interface.F90(2229,5)' without being defined
    Image              PC                Routine            Line        Source
    Test_Driver_Neste  0000000000522EDA  data_type_command        2229  Data_Type_Command_Line_Interface.F90
    Test_Driver_Neste  0000000000404E00  MAIN__                     39  Test_Driver_Nested.f90
    Test_Driver_Neste  000000000040378E  Unknown               Unknown  Unknown
    libc.so.6          00007F620A933EC5  Unknown               Unknown  Unknown
    Test_Driver_Neste  0000000000403689  Unknown               Unknown  Unknown
    
    Solution:
    
    Change the line 2229:
        clasg_list_new(0:Ng-1) = cli%clasg(0:Ng-1)
    
    With:
        do gi = 0, Ng-1
          clasg_list_new(gi) = cli%clasg(gi)
        enddo
    
    I cannot write a small piece of code to reproduce the
    problem.
    femparadmin committed Aug 20, 2015
    Configuration menu
    Copy the full SHA
    a1b75df View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2015

  1. Merge tag 'v0.6.4' into develop

    Add more clear error message for logical-choices abuse, stable release, fully backward compatible.
    szaghi committed Sep 11, 2015
    Configuration menu
    Copy the full SHA
    cce3916 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d1f6a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    800fc6e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    92d5d27 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2b0a3c0 View commit details
    Browse the repository at this point in the history
  6. add the PR of victor

    szaghi committed Sep 11, 2015
    Configuration menu
    Copy the full SHA
    2db5ae8 View commit details
    Browse the repository at this point in the history
  7. update main doc page

    szaghi committed Sep 11, 2015
    Configuration menu
    Copy the full SHA
    4b9cec8 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2015

  1. Fix bug on cli%free method

    Fix bug on cli%free method.
    
    Why:
    
    Free method free all cli%clasg array elements that starts from 0 not 1.
    
    This change addresses the need by:
    
    Modify the loop of clasg%free starting from 0.
    
    Side effects:
    
    Nothing.
    szaghi committed Oct 8, 2015
    Configuration menu
    Copy the full SHA
    7049686 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b8a5b4c View commit details
    Browse the repository at this point in the history
Loading