-
Notifications
You must be signed in to change notification settings - Fork 4
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
신뢰도 0.0과 초기 신뢰도가 구분되도록 하는 기능 추가 #723
Conversation
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.
Approve 하겠습니다
@@ -14,7 +14,7 @@ | |||
@ToString | |||
public class Reliability { | |||
|
|||
private static final double INITIAL_RELIABILITY_VALUE = Double.MIN_VALUE; | |||
private static final double INITIAL_RELIABILITY_VALUE = -999.0d; |
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.
선택
-Double.MAX_VALUE
도 고려할 수는 있겠네요
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.
마지막까지 고생 많으셨습니다 엔초 😭
|
||
public class ReliabilityProcessor { | ||
|
||
private static final Float EMPTY_RELIABILITY = null; |
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.
칭찬
멋지네요 엔초 👍🏻
📄 작업 내용 요약
신뢰도 0.0과 초기 신뢰도가 구분되도록 하는 기능 추가
🙋🏻 리뷰 시 주의 깊게 확인해야 하는 코드
이전에 초기 신뢰도를
Double.MIN_VALUE
로 했었는데 이게 음수가 아니었더라구요? 0에 아주 가까운 양수인 소수였습니다.따라서 초기 신뢰도를
-999.0d
로 바꾸었습니다.📎 Issue 번호