Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sumpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
sumpy
Commits
03538743
"git@gitlab.tiker.net:fikl2/grudge.git" did not exist on "0f02edcbdddb059ac312094ed09e4e5b1e8a9364"
Commit
03538743
authored
6 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Add missing r'' for escapes, fix indentation
parent
96d00848
No related branches found
No related tags found
1 merge request
!93
Minor fixes
Pipeline
#13282
failed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sumpy/kernel.py
+7
-7
7 additions, 7 deletions
sumpy/kernel.py
with
7 additions
and
7 deletions
sumpy/kernel.py
+
7
−
7
View file @
03538743
...
...
@@ -269,12 +269,12 @@ class Kernel(object):
return
expr
def
get_global_scaling_const
(
self
):
"""
Return a global scaling constant of the kernel.
Typically, this ensures that the kernel is scaled so that
:math:`\mathcal L(G)(x)=C\delta(x)` with a constant of 1, where
:math:`\mathcal L` is the PDE operator associated with the kernel.
Not to be confused with *rscale*, which keeps expansion
coefficients benignly scaled.
r
"""
Return a global scaling constant of the kernel.
Typically, this ensures that the kernel is scaled so that
:math:`\mathcal L(G)(x)=C\delta(x)` with a constant of 1, where
:math:`\mathcal L` is the PDE operator associated with the kernel.
Not to be confused with *rscale*, which keeps expansion
coefficients benignly scaled.
"""
raise
NotImplementedError
...
...
@@ -302,7 +302,7 @@ class ExpressionKernel(Kernel):
def
__init__
(
self
,
dim
,
expression
,
global_scaling_const
,
is_complex_valued
):
"""
r
"""
:arg expression: A :mod:`pymbolic` expression depending on
variables *d_1* through *d_N* where *N* equals *dim*.
(These variables match what is returned from
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment