Changeset 4232


Ignore:
Timestamp:
06/25/10 12:09:52 (15 years ago)
Author:
Mathieu Morlighem
Message:

fixed problem with isanalysis

Location:
issm/trunk/src/c/objects
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Constraints/Rgb.cpp

    r4003 r4232  
    168168/*FUNCTION Rgb::InAnalysis(int analysis_type){{{1*/
    169169bool Rgb::InAnalysis(int in_analysis_type){
    170         if (in_analysis_type=this->analysis_type)return true;
     170        if (in_analysis_type==this->analysis_type)return true;
    171171        else return false;
    172172}
  • issm/trunk/src/c/objects/Constraints/Spc.cpp

    r4043 r4232  
    168168/*FUNCTION Spc::InAnalysis(int analysis_type){{{1*/
    169169bool Spc::InAnalysis(int in_analysis_type){
    170         if (in_analysis_type=this->analysis_type)return true;
     170        if (in_analysis_type==this->analysis_type) return true;
    171171        else return false;
    172172}
    173173/*}}}*/
    174 
  • issm/trunk/src/c/objects/Loads/Icefront.cpp

    r4218 r4232  
    13691369/*FUNCTION Icefront::InAnalysis(int analysis_type){{{1*/
    13701370bool Icefront::InAnalysis(int in_analysis_type){
    1371         if (in_analysis_type=this->analysis_type)return true;
     1371        if (in_analysis_type==this->analysis_type)return true;
    13721372        else return false;
    13731373}
  • issm/trunk/src/c/objects/Loads/Numericalflux.cpp

    r4218 r4232  
    849849/*FUNCTION Numericalflux::InAnalysis(int analysis_type){{{1*/
    850850bool Numericalflux::InAnalysis(int in_analysis_type){
    851         if (in_analysis_type=this->analysis_type)return true;
     851        if (in_analysis_type==this->analysis_type) return true;
    852852        else return false;
    853853}
  • issm/trunk/src/c/objects/Loads/Pengrid.cpp

    r4218 r4232  
    771771/*FUNCTION Pengrid::InAnalysis(int analysis_type){{{1*/
    772772bool Pengrid::InAnalysis(int in_analysis_type){
    773         if (in_analysis_type=this->analysis_type)return true;
     773        if (in_analysis_type==this->analysis_type)return true;
    774774        else return false;
    775775}
  • issm/trunk/src/c/objects/Loads/Penpair.cpp

    r4218 r4232  
    211211/*FUNCTION Penpair::InAnalysis(int analysis_type){{{1*/
    212212bool Penpair::InAnalysis(int in_analysis_type){
    213         if (in_analysis_type=this->analysis_type)return true;
     213        if (in_analysis_type==this->analysis_type)return true;
    214214        else return false;
    215215}
  • issm/trunk/src/c/objects/Loads/Riftfront.cpp

    r4218 r4232  
    931931/*FUNCTION Riftfront::InAnalysis(int analysis_type){{{1*/
    932932bool Riftfront::InAnalysis(int in_analysis_type){
    933         if (in_analysis_type=this->analysis_type)return true;
     933        if (in_analysis_type==this->analysis_type) return true;
    934934        else return false;
    935935}
Note: See TracChangeset for help on using the changeset viewer.