• Thibault Hallouin's avatar
    propagate templates to probabilist Evaluator class · ee8e2ef0
    Thibault Hallouin authored
    This is required for the bindings, because the 2D views on 4D tensors
    must be on the correct type (i.e. pytensor/rtensor/xtensor). Although,
    casting of the views to become xtensor could have been used instead.
    
    In doing so, there is no source file to be compiled anymore, so this
    becomes a header-only library. But to keep the "public" headers separate
    from the implementation, a subdirectory "detail/" is added.
    ee8e2ef0
.php_cs.dist 399 bytes
<?php declare(strict_types = 1);
require __DIR__ . '/vendor/autoload.php';
$finder = PhpCsFixer\Finder::create()
    ->exclude('vendor')
    ->exclude('node_modules')
    ->exclude('var')
    ->files()
    ->name('*.php')
    ->name('console')
    ->name('.php_cs.dist')
    ->in('.');
return Irstea\CS\Config::create()
    ->setIndent('    ')
    ->setLineEnding("\n")
    ->setFinder($finder);