Changeset 5199
- Timestamp:
- 08/08/08 12:57:52 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/patientmatching/src/org/regenstrief/linkage/analysis/ScaleWeightModifier.java
r4110 r5199 203 203 204 204 205 double scalar = Math.log(adjustment.getScalingFactor())/Math.log(2); 206 207 ret.addDemographicScalarModifier(this, cur_demographic, scalar, ModifiedMatchResult.Operator.PLUS); 205 //double scalar = Math.log(adjustment.getScalingFactor())/Math.log(2); 206 double scalar = adjustment.getScalingFactor(); 207 208 ret.addDemographicScalarModifier(this, cur_demographic, scalar, ModifiedMatchResult.Operator.MULTIPLY); 208 209 } 209 210 }