TLP Insurance Using Functions Case Study - Gnorion/BizVR GitHub Wiki

Case Study TLP Insurance Basic Decision Model Using Functions

image

Coverage Table

image

Properties Table

image

Customer Table

image

Sample Execution

image

Notice that no risk was assigned to the property - that usually indicates that there are some missing rules. If we run the Validation engine it will tell us (among other things) that these rules are missing from the property risk table

  • if property.age>25 and property.construction='straw' and property.value=10000 then result not specified
  • if property.age=25 and property.construction='straw' and property.value<10000 then result not specified
  • if property.age=25 and property.construction='straw' and property.value=10000 then result not specified
  • if property.age=25 and property.construction='bricks' and property.value<10000 then result not specified
  • if property.age=25 and property.construction='bricks' and property.value=10000 then result not specified

The highlighted rule is the one that would have dealt with property risk in our execution example. Of course the VV engine does not know what the result should be - the rule author needs to determine that.

Next........TLP Insurance Using Credit Scoring Sub Decision