-
Notifications
You must be signed in to change notification settings - Fork 215
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
DC Bias Points Bug Fix (Hackish) (READY) #286
Conversation
This a current hack as 'Graph::loadDatFile()' does not support multi-node data loading.
Let's check it and pull it so that it is not broken anymore. |
thanks this is working for me. |
for(node_it = NodeList.begin(); node_it != NodeList.end(); node_it++) { | ||
qDebug() << "SweepDialog::slotNewValue:(*node_it)->Name:" << (*node_it)->Name; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line should be after line 150.
Testing... |
Works for me as well! Thank you! |
DC Bias Points Bug Fix (Hackish) (READY)
it seems now we understand why the DC Bias Points stuff was not working - read data were still considered valid when asking for the data of another variable, IIUC. |
@in3otd |
the schematic in #272 worked, if I removed one resistor. This was before felix's PR, did not check after. |
...besides, the commit message is completely lacking some context; "Those who fail to document context in commit messages condemn all the developers to reread the code"... |
Sorry, that was my mistake! I should have asked for a commit message... |
Please write down the commit message here so that I can follow the logic and format (in the future). |
I do not pretend to have captured exactly what was done, but I had in mind a commit message like this one:
I think the guidelines here and here sum up the main points nicely. And we know the author of the latter document is always right 😁 . |
Good guidelines. I think, we should make it a requirement for a PR to fulfill. @guitorri |
It is now merged. We cannot rewrite history. |
will add the commit guidelines to our Contributing to Qucs wiki page. |
One another thing regarding "clang-format", when will that be used? So I suggest, to make 2 commits; first commit being the changes and the second commit being the "clang-formatted" version of that file. Either we format the code slowly in PRs or give it a full shot soon. More ideas? |
yes, some part of the code are badly formatted, but I too avoid to touch them if they are not part of the main PR subject. |
Yes, this was on my mind as well but it was going to open a can of worms. |
Loading data file is not skipped based on the previous loaded time.
This a current hack as 'Graph::loadDatFile()' does not support multi-node data loading.