1 31 34 package org.objectweb.proactive.core.group.topology; 35 36 import org.objectweb.proactive.core.group.Group; 37 import org.objectweb.proactive.core.mop.ConstructionOfReifiedObjectFailedException; 38 39 40 45 public class Tetrahedron extends TopologyGroup { 46 public Tetrahedron(Group g, int size) 47 throws ConstructionOfReifiedObjectFailedException { 48 super(g, size); 49 for (int i = 0; i < size; i++) { 50 this.add(g.get(i)); 51 } 52 } 53 } 54 | Popular Tags |