Merged
Conversation
Minor updates in ElemshapeData_Methods
refractoring(BaseInterpolation_Method): adding isUpper option - When we convert integer id to text, isUpper can be used to convert them to upper case.
Add new interfaces for copying integer vectors: - Public interfaces `Copy` and `Copy_` - Implementation for different integer types (INT8, INT16, INT32, INT64) - Support for full vector copy and partial copy with specified ranges - Fix case inconsistency in `intVec_getTotalDimension` function name - Fix capitalization of `PUBLIC` keyword in QuadraturePoint_Method.F90 - Add optional parameter `isUpper` to QuadraturePoint conversion functions
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 pull request introduces several enhancements and new features across multiple modules to improve functionality and flexibility. The most significant changes include the addition of optional uppercase formatting for string conversions, new copy interfaces for various data structures, and optimizations in matrix operations. These updates aim to enhance code readability, usability, and performance.
String Conversion Enhancements:
isUpperparameter to string conversion functions likeBaseContinuity_ToString,BaseInterpolation_ToString1, andBaseType_ToChar. This allows the returned string to be formatted in uppercase when specified. [1] [2] [3] [4]Copy Interfaces:
CopyandCopy_interfaces inIntVector_ConstructorMethodandQuadraturePoint_Methodmodules. These provide functionality to reallocate and copy data between objects, supporting various integer types and partial copying. [1] [2] [3] [4]Matrix Operation Optimizations:
elemsd_SetBarycentricCoord,elemsd_SetJacobian, andstsd_SetJacobianby removing unnecessary array dimension specifications. This improves code clarity and reduces potential errors. [1] [2] [3]Module Dependency Updates:
ElemshapeData_Methodby reordering and uncommenting certainUSEstatements to include additional methods likeElemshapeData_LagrangeandElemshapeData_Hierarchical. [1] [2]Minor Improvements:
IntVec_getTotalDimensiontointVec_getTotalDimensionto align with naming conventions.