Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public boolean isCorrect(MufChiValues weightValues) {
  2. const dogginess = this.fluffinessValue * weightValues.flufffinessValue
  3. + this.roundnessValue * weightValues.roundnessValue
  4. + this.colorValue * weightValues.colorValue
  5. if (dogginess >= .6) {
  6. return true;
  7. }
  8. else {
  9. return false;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement