demonstrator_updated_test.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. CertainTrust Demonstrator in JavaScript
  5. Demonstrates some capabilities of the CertainTrust SDK
  6. using a Java applet that interactively calculates
  7. AND and OR of two CertainTrust data objects and
  8. visually displays both the input objects and the output.
  9. @author Florian Volk <florian.volk@cased.de>
  10. -->
  11. <head>
  12. <meta charset="utf-8" />
  13. <title>CertainTrust Demonstrator in JavaScript</title>
  14. <style type="text/css">
  15. h1, p, td:nth-child(2n) { text-align: center; }
  16. table { margin: 50px 0; }
  17. </style>
  18. <!-- include these two scripts and the CSS to enable both CertainTrust and the HTI -->
  19. <script type="text/javascript" src="CertainTrust.js"></script>
  20. <script type="text/javascript" src="certainTrustHTI.js"></script>
  21. <link rel="stylesheet" type="text/css" href="certainTrustHTI.css"/>
  22. </head>
  23. <body>
  24. <h1>Demonstrator for CertainTrust</h1>
  25. <p>CertainTrust provides a means for the evaluation of propositional logic terms under uncertainty.</p>
  26. <table>
  27. <!-- Demonstrator for CertainTrust.AND -->
  28. <tr>
  29. <td id="and-operand1"></td>
  30. <td>AND</td>
  31. <td id="and-operand2"></td>
  32. <td>=</td>
  33. <td id="and-result"></td>
  34. </tr>
  35. <!-- Demonstrator for CertainTrust.OR -->
  36. <tr>
  37. <td id="or-operand1"></td>
  38. <td>OR</td>
  39. <td id="or-operand2"></td>
  40. <td>=</td>
  41. <td id="or-result"></td>
  42. </tr>
  43. <!-- Demonstrator for CertainTrust.cFusion -->
  44. <tr>
  45. <td id="cf-operand1"></td>
  46. <td>cFusion</td>
  47. <td id="cf-operand2"></td>
  48. <td>=</td>
  49. <td id="cf-result"></td>
  50. </tr>
  51. <!-- Demonstrator for CertainTrust.wFusion -->
  52. <tr>
  53. <td id="wf-operand1"></td>
  54. <td>wFusion</td>
  55. <td id="wf-operand2"></td>
  56. <td>=</td>
  57. <td id="wf-result"></td>
  58. </tr>
  59. </table>
  60. <script type="text/javascript">
  61. // create an Array to hold the CertainTrust objects
  62. var CT_objects = [];
  63. var N = 10;
  64. var cweight = [1,1];
  65. var wweight = [1,1];
  66. var doc = 0.2;
  67. var CT_names = ['and-operand1', 'and-operand2', 'and-result',
  68. 'or-operand1', 'or-operand2', 'or-result',
  69. 'cf-operand1','cf-operand2','cf-result',
  70. 'wf-operand1','wf-operand2','wf-result'];
  71. // ANDObserver is used for the AND calculation
  72. var ANDObserver = {
  73. update: function() {
  74. // calculate the CertainTrust.AND for both values
  75. var CT_result = CT_objects['and-operand1'].AND(CT_objects['and-operand2']);
  76. // update the HTI which displays the result
  77. CT_objects['and-result'].setF(CT_result.getF());
  78. CT_objects['and-result'].setTC(CT_result.getT(), CT_result.getC());
  79. }
  80. };
  81. // ORObserver is used for the OR calculation
  82. var ORObserver = {
  83. update: function() {
  84. // calculate the CertainTrust.OR for both values
  85. var CT_result = CT_objects['or-operand1'].OR(CT_objects['or-operand2']);
  86. // update the HTI which displays the result
  87. CT_objects['or-result'].setF(CT_result.getF());
  88. CT_objects['or-result'].setTC(CT_result.getT(), CT_result.getC());
  89. }
  90. };
  91. // create the CertainTrust objects and the associated HTIs
  92. for (var i = 0, element; element = CT_names[i]; ++i) {
  93. var CT_object = new CertainTrustSimple(N);
  94. // the result HTIs should be read-only
  95. var isResultHTI = (-1 !== element.indexOf('-result'));
  96. var HTI = new CertainTrustHTI(CT_object, {domParent: element, readonly: isResultHTI});
  97. // register our observers for the calculation
  98. if (!isResultHTI) {
  99. var isOR = (0 === element.indexOf('or-'));
  100. var isAND = (0 === element.indexOf('and-'));
  101. var isCF = (0 === element.indexOf('cf-'));
  102. var isWF = (0 === element.indexOf('wf-'));
  103. if(isOR){
  104. CT_object.addObserver(ORObserver);
  105. }
  106. else {
  107. CT_object.addObserver(ANDObserver);
  108. }
  109. }
  110. // store the created objects for easy access in the Arrays
  111. CT_objects[element] = CT_object;
  112. }
  113. // trigger initial update to the result HTIs
  114. ANDObserver.update();
  115. ORObserver.update();
  116. </script>
  117. <p>
  118. <img src="logo_tudarmstadt.png" alt="Technische Universität Darmstadt" width="176" height="73" />
  119. <img src="logo_softwarecluster.png" alt="Software-Cluster" width="212" height="73" />
  120. </p>
  121. </body>
  122. </html>