Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iterator for calculating acceleleration needs to avoid current Particle #2

Closed
weka511 opened this issue Feb 3, 2018 · 1 comment
Closed
Assignees

Comments

@weka511
Copy link
Owner

weka511 commented Feb 3, 2018

This test is a kludge...
Node::Visitor::Status BarnesHutVisitor::visit(Node * node) {
...
switch (node->getStatus()) {
...
default:
std::cout<<FILE <<", " <<LINE<< std::endl;
dsq=sqr(x-_x) + sqr(y-_y) + sqr(z-_z);
if (dsq>0)_accumulate_acceleration(m,x,y,z,dsq); //FIXME
return Node::Visitor::Status::Continue;
}
}

@weka511 weka511 changed the title Iterator for calculation acceleleration needs to avoid current Particle Iterator for calculating acceleleration needs to avoid current Particle Feb 3, 2018
weka511 added a commit that referenced this issue Feb 3, 2018
@weka511 weka511 self-assigned this Feb 7, 2018
@weka511
Copy link
Owner Author

weka511 commented Feb 8, 2018

Either put an id on each Particle, or replace iterator with a for int i loop and pass i in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant