lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [5621] Demonstrate a conditional restriction on table rati


From: Greg Chicares
Subject: [lmi-commits] [5621] Demonstrate a conditional restriction on table ratings
Date: Thu, 13 Dec 2012 23:53:51 +0000

Revision: 5621
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=5621
Author:   chicares
Date:     2012-12-13 23:53:51 +0000 (Thu, 13 Dec 2012)
Log Message:
-----------
Demonstrate a conditional restriction on table ratings

Modified Paths:
--------------
    lmi/trunk/dbdict.cpp

Modified: lmi/trunk/dbdict.cpp
===================================================================
--- lmi/trunk/dbdict.cpp        2012-12-13 23:15:19 UTC (rev 5620)
+++ lmi/trunk/dbdict.cpp        2012-12-13 23:53:51 UTC (rev 5621)
@@ -660,7 +660,11 @@
     Add(database_entity(DB_AgeLastOrNearest    , oe_age_last_birthday));
     Add(database_entity(DB_AllowRetirees       , true));
     Add(database_entity(DB_MinSpecAmt          , 100000.0));
-    Add(database_entity(DB_AllowSubstdTable    , true));
+    // Forbid substandard table ratings with simplified or guaranteed issue.
+    int dim_uw_basis[e_number_of_axes] = {1, 1, 1, 1, 5, 1, 1};
+    //                              med  para nonmed   SI     GI
+    double allow_substd_table[] = {true, true, true, false, false};
+    Add(database_entity(DB_AllowSubstdTable, e_number_of_axes, dim_uw_basis, 
allow_substd_table));
     Add(database_entity(DB_AllowFlatExtras     , true));
     Add(database_entity(DB_MinIssAge           , 15));
     Add(database_entity(DB_MaxIssAge           , 70));




reply via email to

[Prev in Thread] Current Thread [Next in Thread]