-
Notifications
You must be signed in to change notification settings - Fork 292
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
ParsedFunction: change to vectors of unique_ptrs #2731
Conversation
This is similar to the change made in 783091b for ParsedFEMFunction. For a class to be pushed-back onto a vector, it must be MoveInsertable, which FunctionParserADBase is not. Refs libMesh#2710
Glad I tested it. This one's actually failing to compile with GRINS for me. When trying to initialize a vector of ParsedFunction objects, gcc 9.3.0-10ubuntu2 gives me:
|
It's possible that the ParsedFEMFunction fix had the same problem - |
Hmm... the line numbers are a bit off, but I guess it's referring to:
I don't really see how my change would cause any issues with this line as it's calling the |
That's what it looks like to me.
Yeah, I think that's important enough to support. Unless you've already started on it, I'll take a crack at it? |
Please go ahead and just push to this branch if you don't mind. I'll work on other stuff instead. |
I'd appreciate a double-check on the code, but this is passing tests in GRINS now, and I've added a couple lines to the unit tests to make sure "we can push them into vectors and get out the expected results still" is covered in CI here from now on. |
Looks OK to me... I think the other option is to implement the copy constructor and then implement |
I should have remembered that. This copying should never be happening in an inner loop, though, so as long as my shame isn't going to show up in anyone's timings I'd say let's just merge as-is. |
I remembered the other reason to use the copy-and-swap idiom, which is otherwise you need to remember to guard against self-assignment, which your current implementation does not do... I'll throw a version up there and we can decide whether we like it... |
Ooh, good catch. Self-assignment in my version would have just been an efficiency issue, not a memory leak like in that StackOverflow example, but your version is still much better. |
And your version is still happy with my unit tests and with GRINS. Good to go. |
The master hashes of the commits cherry-picked and squashed to create this commit: PR #2720 783091b PR #2731 b67b3e4 0a1dbe4 73d58f2 3a61395 a6f14fe 00cd55d 1310eac A similar "combined" commit should also be cherry-picked onto the 1.4.x and 1.5.x series and new patch-level releases should be made for them, since this is an issue which prevents certain compilers from being able to compile the library. Refs #2710
This is similar to the change made in 783091b for
ParsedFEMFunction. For a class to be pushed-back onto a vector, it
must be MoveInsertable, which FunctionParserADBase is not.
Refs #2710