We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The family of TruncBeta* methods in the InsilicoSampler create arrays, but do not use them:
// create a new transpose probbase matrix double[][] new_probbase = new double[this.C][this.S]; for(int s=0; s<this.S; s++){ for(int c=0; c < this.C; c++){new_probbase[c][s] = this.probbase[s][c];} }
These should be removed. Here are the instances in the code:
InSilicoVA/InSilicoVA/java/Insilico/src/sampler/InsilicoSampler2.java
Line 364 in 9a2eb17
Line 452 in 9a2eb17
Line 541 in 9a2eb17
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The family of TruncBeta* methods in the InsilicoSampler create arrays, but do not use them:
These should be removed. Here are the instances in the code:
InSilicoVA/InSilicoVA/java/Insilico/src/sampler/InsilicoSampler2.java
Line 364 in 9a2eb17
InSilicoVA/InSilicoVA/java/Insilico/src/sampler/InsilicoSampler2.java
Line 452 in 9a2eb17
InSilicoVA/InSilicoVA/java/Insilico/src/sampler/InsilicoSampler2.java
Line 541 in 9a2eb17
The text was updated successfully, but these errors were encountered: