test.generic.test_math.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>test.generic.test_math module &#8212; Python(P)DEVS-BBL documentation</title>
  8. <link rel="stylesheet" href="_static/nature.css" type="text/css" />
  9. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  10. <link rel="stylesheet" type="text/css" href="_static/custom.css" />
  11. <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
  12. <script type="text/javascript" src="_static/jquery.js"></script>
  13. <script type="text/javascript" src="_static/underscore.js"></script>
  14. <script type="text/javascript" src="_static/doctools.js"></script>
  15. <script type="text/javascript" src="_static/language_data.js"></script>
  16. <script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
  17. <link rel="index" title="Index" href="genindex.html" />
  18. <link rel="search" title="Search" href="search.html" />
  19. <link rel="next" title="test.generic.test_queues module" href="test.generic.test_queues.html" />
  20. <link rel="prev" title="test.generic.test_io module" href="test.generic.test_io.html" />
  21. </head><body>
  22. <div class="related" role="navigation" aria-label="related navigation">
  23. <h3>Navigation</h3>
  24. <ul>
  25. <li class="right" style="margin-right: 10px">
  26. <a href="genindex.html" title="General Index"
  27. accesskey="I">index</a></li>
  28. <li class="right" >
  29. <a href="py-modindex.html" title="Python Module Index"
  30. >modules</a> |</li>
  31. <li class="right" >
  32. <a href="test.generic.test_queues.html" title="test.generic.test_queues module"
  33. accesskey="N">next</a> |</li>
  34. <li class="right" >
  35. <a href="test.generic.test_io.html" title="test.generic.test_io module"
  36. accesskey="P">previous</a> |</li>
  37. <li class="nav-item nav-item-0"><a href="index.html">Python(P)DEVS-BBL documentation</a> &#187;</li>
  38. <li class="nav-item nav-item-1"><a href="test.html" >test package</a> &#187;</li>
  39. <li class="nav-item nav-item-2"><a href="test.generic.html" accesskey="U">test.generic package</a> &#187;</li>
  40. </ul>
  41. </div>
  42. <div class="document">
  43. <div class="documentwrapper">
  44. <div class="bodywrapper">
  45. <div class="body" role="main">
  46. <div class="section" id="module-test.generic.test_math">
  47. <span id="test-generic-test-math-module"></span><h1>test.generic.test_math module<a class="headerlink" href="#module-test.generic.test_math" title="Permalink to this headline">¶</a></h1>
  48. <p>Tests the mathematical building blocks to prove validity w.r.t. these tests.</p>
  49. <div class="admonition seealso">
  50. <p class="first admonition-title">See also</p>
  51. <p class="last"><a class="reference internal" href="pypdevsbbl.generic.math.html#module-pypdevsbbl.generic.math" title="pypdevsbbl.generic.math"><code class="xref py py-mod docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math</span></code></a></p>
  52. </div>
  53. <dl class="class">
  54. <dt id="test.generic.test_math.TestMath">
  55. <em class="property">class </em><code class="descclassname">test.generic.test_math.</code><code class="descname">TestMath</code><span class="sig-paren">(</span><em>methodName='runTest'</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath" title="Permalink to this definition">¶</a></dt>
  56. <dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">unittest.case.TestCase</span></code></p>
  57. <dl class="method">
  58. <dt id="test.generic.test_math.TestMath.test_equation">
  59. <code class="descname">test_equation</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_equation"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_equation" title="Permalink to this definition">¶</a></dt>
  60. <dd><p>Tests the <a class="reference internal" href="pypdevsbbl.generic.math.html#pypdevsbbl.generic.math.Adder" title="pypdevsbbl.generic.math.Adder"><code class="xref py py-class docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math.Adder</span></code></a> block.</p>
  61. </dd></dl>
  62. <dl class="method">
  63. <dt id="test.generic.test_math.TestMath.test_adder">
  64. <code class="descname">test_adder</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_adder"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_adder" title="Permalink to this definition">¶</a></dt>
  65. <dd><p>Tests the <a class="reference internal" href="pypdevsbbl.generic.math.html#pypdevsbbl.generic.math.Adder" title="pypdevsbbl.generic.math.Adder"><code class="xref py py-class docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math.Adder</span></code></a> block.</p>
  66. </dd></dl>
  67. <dl class="method">
  68. <dt id="test.generic.test_math.TestMath.test_multiplier">
  69. <code class="descname">test_multiplier</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_multiplier"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_multiplier" title="Permalink to this definition">¶</a></dt>
  70. <dd><p>Tests the <a class="reference internal" href="pypdevsbbl.generic.math.html#pypdevsbbl.generic.math.Multiplier" title="pypdevsbbl.generic.math.Multiplier"><code class="xref py py-class docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math.Multiplier</span></code></a> block.</p>
  71. </dd></dl>
  72. <dl class="method">
  73. <dt id="test.generic.test_math.TestMath.test_differentiator">
  74. <code class="descname">test_differentiator</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_differentiator"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_differentiator" title="Permalink to this definition">¶</a></dt>
  75. <dd><p>Tests the <a class="reference internal" href="pypdevsbbl.generic.math.html#pypdevsbbl.generic.math.Differentiator" title="pypdevsbbl.generic.math.Differentiator"><code class="xref py py-class docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math.Differentiator</span></code></a> block.</p>
  76. </dd></dl>
  77. <dl class="method">
  78. <dt id="test.generic.test_math.TestMath.test_integrator">
  79. <code class="descname">test_integrator</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_integrator"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_integrator" title="Permalink to this definition">¶</a></dt>
  80. <dd><p>Tests the <a class="reference internal" href="pypdevsbbl.generic.math.html#pypdevsbbl.generic.math.Integrator" title="pypdevsbbl.generic.math.Integrator"><code class="xref py py-class docutils literal notranslate"><span class="pre">pypdevsbbl.generic.math.Integrator</span></code></a> block.</p>
  81. </dd></dl>
  82. <dl class="method">
  83. <dt id="test.generic.test_math.TestMath.test_random">
  84. <code class="descname">test_random</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/test/generic/test_math.html#TestMath.test_random"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#test.generic.test_math.TestMath.test_random" title="Permalink to this definition">¶</a></dt>
  85. <dd></dd></dl>
  86. </dd></dl>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  92. <div class="sphinxsidebarwrapper">
  93. <h4>Previous topic</h4>
  94. <p class="topless"><a href="test.generic.test_io.html"
  95. title="previous chapter">test.generic.test_io module</a></p>
  96. <h4>Next topic</h4>
  97. <p class="topless"><a href="test.generic.test_queues.html"
  98. title="next chapter">test.generic.test_queues module</a></p>
  99. <div id="searchbox" style="display: none" role="search">
  100. <h3>Quick search</h3>
  101. <div class="searchformwrapper">
  102. <form class="search" action="search.html" method="get">
  103. <input type="text" name="q" />
  104. <input type="submit" value="Go" />
  105. <input type="hidden" name="check_keywords" value="yes" />
  106. <input type="hidden" name="area" value="default" />
  107. </form>
  108. </div>
  109. </div>
  110. <script type="text/javascript">$('#searchbox').show(0);</script>
  111. </div>
  112. </div>
  113. <div class="clearer"></div>
  114. </div>
  115. <div class="related" role="navigation" aria-label="related navigation">
  116. <h3>Navigation</h3>
  117. <ul>
  118. <li class="right" style="margin-right: 10px">
  119. <a href="genindex.html" title="General Index"
  120. >index</a></li>
  121. <li class="right" >
  122. <a href="py-modindex.html" title="Python Module Index"
  123. >modules</a> |</li>
  124. <li class="right" >
  125. <a href="test.generic.test_queues.html" title="test.generic.test_queues module"
  126. >next</a> |</li>
  127. <li class="right" >
  128. <a href="test.generic.test_io.html" title="test.generic.test_io module"
  129. >previous</a> |</li>
  130. <li class="nav-item nav-item-0"><a href="index.html">Python(P)DEVS-BBL documentation</a> &#187;</li>
  131. <li class="nav-item nav-item-1"><a href="test.html" >test package</a> &#187;</li>
  132. <li class="nav-item nav-item-2"><a href="test.generic.html" >test.generic package</a> &#187;</li>
  133. </ul>
  134. </div>
  135. <div class="footer" role="contentinfo">
  136. &#169; Copyright 2020, Randy Paredis.
  137. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.8.5.
  138. </div>
  139. </body>
  140. </html>