ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/mpiBASS.c
(Generate patch)

Comparing trunk/OOPSE/libBASS/mpiBASS.c (file contents):
Revision 447 by mmeineke, Thu Apr 3 20:21:54 2003 UTC vs.
Revision 675 by mmeineke, Mon Aug 11 19:38:44 2003 UTC

# Line 81 | Line 81 | void throwMPIEvent(event* the_event)
81        mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int
82        break;
83  
84 +    case ZCONSTRAINT:
85 +      mpiEventContainer.type = mpiZCONSTRAINT;
86 +      mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int
87 +      break;
88 +
89      case COMPONENT:
90        mpiEventContainer.type = mpiCOMPONENT;
91        mpiEventContainer.i1 = the_event->evt.blk_index; // pack block index into first int
# Line 179 | Line 184 | void mpiEventLoop(void)
184            "  MEMBER      %d\n"
185            "  CONSTRAINT  %d\n"
186            "  ORIENTATION %d\n"
187 <          "  START_INDEX %d\n"
187 >          "  ZCONSTRAINT %d\n"
188            "  BLOCK_END   %d\n"
189            "\n",
190            worldRank,
191            MOLECULE, ATOM, BOND, BEND, TORSION, COMPONENT,
192            POSITION, ASSIGNMENT, MEMBER, CONSTRAINT, ORIENTATION,
193 <          START_INDEX, BLOCK_END );
193 >          ZCONSTRAINT, BLOCK_END );
194   #endif
195  
196    MPI_Bcast(&mpiContinue,1,MPI_INT,0,MPI_COMM_WORLD);
# Line 236 | Line 241 | void mpiCatchEvent(void)
241      the_event.event_type = TORSION;
242      the_event.evt.blk_index = mpiEventContainer.i1;
243      break;
244 +
245 +  case mpiZCONSTRAINT:
246 +    the_event.event_type = ZCONSTRAINT;
247 +    the_event.evt.blk_index = mpiEventContainer.i1;
248 +    break;
249      
250    case mpiCOMPONENT:
251      the_event.event_type = COMPONENT;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines