De Boor's algorithm: Difference between revisions

Content deleted Content added
Midjji2 (talk | contribs)
Local support: critical correction for continuity
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 61:
The following code in the [[Python (programming language)|Python programming language]] is a naive implementation of the optimized algorithm.
 
<sourcesyntaxhighlight lang="python">
def deBoor(k: int, x: int, t, c, p: int):
"""Evaluates S(x).
Line 81:
 
return d[p]
</syntaxhighlight>
</source>
 
== See also ==