r_particles.push_back(*it2);
}
}
The size I get from the first one is: 17507811567898
The restraint is of type
connectivity restraint (active):
I solved it by using:
Particles r_particles;
ParticlesList pl;
for(ParticlesList::iterator it1 = pl.begin();
it1 != pl.end(); it1++){
std::cout<<it1->size()<<std::endl;
since that's from the nightly build, and all the tests passed. There
are
unit tests for this method. What you should be getting for
ConnectivityRestraint is the default implementation from Restraint,
which is a 1-element ParticlesList containing a Particles vector with
all Particles in the restraint.
Ben
--
ben@salilab.orghttp://salilab.org/~ben/
"It is a capital mistake to theorize before one has data."
- Sir Arthur Conan Doyle
_______________________________________________
IMP-dev mailing list
IMP-dev@salilab.orghttps://salilab.org/mailman/listinfo/imp-dev