Changeset 21482


Ignore:
Timestamp:
01/11/17 09:58:33 (8 years ago)
Author:
jbondzio
Message:

BUG: assert that node is active if you change its degrees of freedom

File:
1 edited

Legend:

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

    r21249 r21482  
    458458
    459459        /*Put dof for this node into the f set (ie, this dof will NOT be constrained
    460          * to a fixed value during computations. */
     460         * to a fixed value during computations. Only do this for active nodes. */
    461461        _assert_(dof<this->indexing.gsize);
     462        _assert_(this->indexing.active);
    462463
    463464        if(this->indexing.f_set[dof] == 0){
Note: See TracChangeset for help on using the changeset viewer.