jtpio / xtl

The x template library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xtl

Travis Appveyor Azure Documentation Status Join the Gitter Chat

Basic tools (containers, algorithms) used by other quantstack packages

Installation

Package managers

We provide a package for the conda package manager:

conda install -c conda-forge xtl

If you are using Conan to manage your dependencies, merely add xtl/x.y.z@omaralvarez/public-conan to your requires, where x.y.z is the release version you want to use. Please file issues in conan-xtl if you experience problems with the packages. Sample conanfile.txt:

[requires]
xtl/0.6.5@omaralvarez/public-conan

[generators]
cmake

Install from sources

xtl is a header-only library.

You can directly install it from the sources:

cmake -D CMAKE_INSTALL_PREFIX=your_install_prefix
make install

Documentation

To get started with using xtl, check out the full documentation

http://xtl.readthedocs.io/

Building the HTML documentation

xtl's documentation is built with three tools

While doxygen must be installed separately, you can install breathe by typing

pip install breathe

Breathe can also be installed with conda

conda install -c conda-forge breathe

Finally, build the documentation with

make html

from the docs subdirectory.

License

We use a shared copyright model that enables all contributors to maintain the copyright on their contributions.

This software is licensed under the BSD-3-Clause license. See the LICENSE file for details.

About

The x template library

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 97.9%Language:CMake 2.0%Language:Python 0.1%