Metadata-Version: 2.1
Name: LRSplines
Version: 1.12.0
Summary: Python bindings for the LRSplines library
Home-page: UNKNOWN
Maintainer: Eivind Fonn
Maintainer-email: eivind.fonn@sintef.no
License: GNU public license v3
Keywords: Splines,LR,Locally refined
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: COPYING

=========
LRSplines
=========

.. image:: https://badge.fury.io/py/LRSplines.svg
   :target: https://badge.fury.io/py/LRSplines

.. image:: https://github.com/TheBB/lrsplines-python/workflows/Python%20package/badge.svg?branch=master
   :target: https://github.com/TheBB/lrsplines-python/actions?query=workflow%3A%22Python+package%22+branch%3Amaster


This is a cython-based Python wrapper around the `LRSplines
<https://github.com/VikingScientist/LRsplines>`_ library, a C++ implementation
of locally refined B-splines.


Installing
----------

LRSplines is available on PyPi.::

    pip install lrsplines


Usage
-----

There are two modules for interacting with LRSplines.

- The ``lrspline.raw`` module contains an API that is identical (so
  far as feasible) to the C++ interface of the backend library.

- The ``lrspline`` module contains a Pythonic interface to the same
  library.

In addition, the ``lrsplines`` module is available, but is deprecated
and should not be used.


