366 type_ = PolymerType::Linear;
367 readOptional<PolymerType::Enum>(in,
"type", type_);
369 read<int>(in,
"nBlock", nBlock_);
372 nVertex_ = nBlock_ + 1;
375 blocks_.allocate(nBlock_);
376 vertices_.allocate(nVertex_);
377 propagatorIds_.allocate(2*nBlock_);
380 for (
int blockId = 0; blockId < nBlock_; ++blockId) {
381 blocks_[blockId].setId(blockId);
382 blocks_[blockId].setPolymerType(type_);
386 for (
int vertexId = 0; vertexId < nVertex_; ++vertexId) {
387 vertices_[vertexId].setId(vertexId);
392 if (type_ == PolymerType::Linear) {
393 for (
int blockId = 0; blockId < nBlock_; ++blockId) {
394 blocks_[blockId].setVertexIds(blockId, blockId + 1);
399 readDArray<Block>(in,
"blocks", blocks_, nBlock_);
425 int vertexId0, vertexId1;
427 for (
int blockId = 0; blockId < nBlock_; ++blockId) {
428 blockPtr = &(blocks_[blockId]);
429 vertexId0 = blockPtr->vertexId(0);
430 vertexId1 = blockPtr->vertexId(1);
431 vertices_[vertexId0].addBlock(*blockPtr);
432 vertices_[vertexId1].addBlock(*blockPtr);
442 bool hasPhi = readOptional(in,
"phi", phi_).isActive();
444 ensemble_ = Species::Closed;
446 ensemble_ = Species::Open;
451 Vertex const * vertexPtr = 0;
452 Propagator
const * sourcePtr = 0;
453 Propagator * propagatorPtr = 0;
455 int blockId, directionId, vertexId, i;
456 for (blockId = 0; blockId < nBlock(); ++blockId) {
458 for (directionId = 0; directionId < 2; ++directionId) {
459 vertexId = block(blockId).vertexId(directionId);
460 vertexPtr = &vertex(vertexId);
461 propagatorPtr = &block(blockId).propagator(directionId);
462 for (i = 0; i < vertexPtr->
size(); ++i) {
464 if (propagatorId[0] == blockId) {
468 &block(propagatorId[0]).propagator(propagatorId[1]);
469 propagatorPtr->addSource(*sourcePtr);
484 if (nPropagator_ != 0) {
491 for (
int iBlock = 0; iBlock < nBlock_; ++iBlock) {
492 for (
int iDirection = 0; iDirection < 2; ++iDirection) {
493 isFinished(iBlock, iDirection) =
false;
501 while (nPropagator_ < nBlock_*2) {
502 for (
int iBlock = 0; iBlock < nBlock_; ++iBlock) {
503 for (
int iDirection = 0; iDirection < 2; ++iDirection) {
504 if (isFinished(iBlock, iDirection) ==
false) {
505 inVertexId = blocks_[iBlock].vertexId(iDirection);
506 inVertexPtr = &vertices_[inVertexId];
508 for (
int j = 0; j < inVertexPtr->
size(); ++j) {
510 if (propagatorId[0] != iBlock) {
511 if (!isFinished(propagatorId[0], propagatorId[1])) {
518 propagatorIds_[nPropagator_][0] = iBlock;
519 propagatorIds_[nPropagator_][1] = iDirection;
520 isFinished(iBlock, iDirection) =
true;