Changeset 16025


Ignore:
Timestamp:
08/29/13 20:20:10 (12 years ago)
Author:
Mathieu Morlighem
Message:

NEW: added node local id (lid), required to speed up stiffness matrix preallocation

Location:
issm/trunk-jpl/src/c/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Node.cpp

    r16024 r16025  
    345345/*}}}*/
    346346/*FUNCTION Node::Sid{{{*/
    347 int    Node::Sid(void){ return sid; }
     347int Node::Sid(void){
     348        return sid;
     349}
     350/*}}}*/
     351/*FUNCTION Node::Lid{{{*/
     352int  Node::Lid(void){
     353        return lid;
     354}
    348355/*}}}*/
    349356#ifdef _HAVE_STRESSBALANCE_
  • issm/trunk-jpl/src/c/classes/Node.h

    r16024 r16025  
    6969                void  SetCurrentConfiguration(DataSet* nodes,Vertices* vertices);
    7070                int   Sid(void);
     71                int   Lid(void);
    7172#ifdef _HAVE_STRESSBALANCE_
    7273                void  GetCoordinateSystem(IssmDouble* coord_system_out);
Note: See TracChangeset for help on using the changeset viewer.