-
-
Notifications
You must be signed in to change notification settings - Fork 157
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
What is the _cmp variable for? #67
Comments
There was talk of making it boolean in #35. |
oh very helpful thanks. Is there any scenario in which we would run the code and |
@feenberg, what do you think? |
The references to _puf and _cmp should probably be replaced with tests if _puf then c12345=1000; else c12345=e12345; we should use something like: if e12345 ne . then c12345 = e12345; else c12345 = 1000; I am making those changes in the SAS code and they should be Note that _cmp == 1-_puf in the SAS code. dan On Wed, 12 Nov 2014, T.J. Alumbaugh wrote:
|
On Wed, 12 Nov 2014, T.J. Alumbaugh wrote:
When users take the code inside government, some of them will have the Note that we will be testing the calculator on a file with all the dan
|
Closing in favor of #186. |
The variable
_cmp
is only involved in comparison expressions (i.e.where(_cmp == 1...
). It appears that it is never assigned to except when it is created inpuf.py
, where it is set to all zeros. Does anyone have any insight here? I'd like to remove it if it is not actually useful for any comparisons.The text was updated successfully, but these errors were encountered: