Merged
Conversation
This method is related to the ISSUE #43. Display method has been improved. ```fortran program main use easifemBase implicit none REAL( DFP ), allocatable :: amat(:, :) call TIMESTAMP() call reallocate(amat, 5, 5) call random_number(amat) call display( val=amat, msg="5x5 matrix (always full): ", full=.TRUE. ) call display( val=amat, msg="5x5 matrix (always full): ", full=.FALSE. ) call reallocate(amat, 10, 10) call random_number(amat) call display( val=amat, msg="10x10 (full): ", full=.TRUE. ) call display( val=amat, msg="10x10 (short): ", full=.FALSE. ) end program main ``` ```fortran program main use easifemBase implicit none REAL( DFP ), allocatable :: avec(:) call TIMESTAMP() call reallocate(avec, 5) call random_number(avec) call display( val=avec, msg="A vector of length 5 (always full): ", full=.TRUE. ) call display( val=avec, msg="A vector of length 5 (always full): ", full=.TRUE., orient="ROW" ) call display( val=avec, msg="A vector of length 5 (always full): ", full=.FALSE. ) call display( val=avec, msg="A vector of length 5 (always full): ", full=.FALSE., orient="ROW" ) call reallocate(avec, 10) call random_number(avec) call display( val=avec, msg="A vector of length 10 (full): ", full=.TRUE. ) call display( val=avec, msg="A vector of length 10 (short): ", full=.FALSE. ) call display( val=avec, msg="A vector of length 10 (short): ", full=.FALSE., orient="ROW" ) end program main ``` Changes to be committed: modified: cmake/targetCompileDefs.cmake modified: install.py modified: src/modules/Display/src/Display_Mat2.inc modified: src/modules/Display/src/Display_Mat3.inc modified: src/modules/Display/src/Display_Mat4.inc modified: src/modules/Display/src/Display_Method.F90 modified: src/modules/Display/src/Display_Scalar.inc modified: src/modules/Display/src/Display_Vector.inc modified: src/modules/Polynomial/src/QuadrangleInterpolationUtility.F90 modified: src/modules/Polynomial/src/TriangleInterpolationUtility.F90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This method is related to the ISSUE #43
Display method has been improved.
Changes to be committed:
modified: cmake/targetCompileDefs.cmake
modified: install.py
modified: src/modules/Display/src/Display_Mat2.inc
modified: src/modules/Display/src/Display_Mat3.inc
modified: src/modules/Display/src/Display_Mat4.inc
modified: src/modules/Display/src/Display_Method.F90
modified: src/modules/Display/src/Display_Scalar.inc
modified: src/modules/Display/src/Display_Vector.inc
modified: src/modules/Polynomial/src/QuadrangleInterpolationUtility.F90
modified: src/modules/Polynomial/src/TriangleInterpolationUtility.F90