Skip to content

Commit

Permalink
rename test_definitions to convergence_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taobrienlbl committed Nov 5, 2023
1 parent 9ea24d9 commit 3cf1c18
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions examples/Convergence Testing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook demonstrates convergence of fastKDE using convergences tests in `fastkde.test_definitions`.\n",
"This notebook demonstrates convergence of fastKDE using convergences tests in `fastkde.convergence_tests`.\n",
"\n",
"The available tests are:\n",
"\n",
Expand All @@ -24,12 +24,12 @@
"* `testTransitionPDF`\n",
"* `testConditional`\n",
"\n",
"Additional tests can be created by creating a subclass of `fastkde.test_definitions.testDistribution` and overriding the `sampleDistributions()` and `pdfStandard()` methods."
"Additional tests can be created by creating a subclass of `fastkde.convergence_tests.testDistribution` and overriding the `sampleDistributions()` and `pdfStandard()` methods."
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -44,27 +44,27 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"import fastkde.test_definitions"
"import fastkde.convergence_tests"
]
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"\"\"\" Run the 1D normal test. \"\"\"\n",
"test1d = fastkde.test_definitions.testNormal1D()\n",
"test1d = fastkde.convergence_tests.testNormal1D()\n",
"test1d.doTesting()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 4,
"metadata": {},
"outputs": [
{
Expand Down
4 changes: 2 additions & 2 deletions examples/fastKDE - Berkely Lab Logo.ipynb

Large diffs are not rendered by default.

File renamed without changes.

0 comments on commit 3cf1c18

Please sign in to comment.