Vcsn  2.1
Be Rational
multiply.hh File Reference
#include <unordered_map>
#include <vcsn/algos/copy.hh>
#include <vcsn/algos/standard.hh>
#include <vcsn/algos/star.hh>
#include <vcsn/algos/sum.hh>
#include <vcsn/core/join-automata.hh>
#include <vcsn/core/join.hh>
#include <vcsn/core/rat/expressionset.hh>
#include <vcsn/dyn/automaton.hh>
#include <vcsn/dyn/label.hh>
#include <vcsn/dyn/polynomial.hh>
#include <vcsn/dyn/weight.hh>
#include <vcsn/misc/raise.hh>
#include <vcsn/misc/vector.hh>
Include dependency graph for multiply.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 vcsn
 
 vcsn::dyn
 
 vcsn::dyn::detail
 

Functions

template<typename A , typename B >
A & vcsn::multiply_here (A &res, const B &b)
 Append automaton b to res. More...
 
template<typename A , typename B >
auto vcsn::multiply (const A &lhs, const B &rhs) -> decltype(join_automata(lhs, rhs))
 Concatenate two standard automata. More...
 
template<typename Lhs , typename Rhs >
automaton vcsn::dyn::detail::multiply (const automaton &lhs, const automaton &rhs)
 Bridge. More...
 
template<typename Aut >
auto vcsn::multiply (const Aut &aut, int min, int max) -> typename Aut::element_type::template fresh_automaton_t<>
 Repeated concatenation of an automaton. More...
 
template<typename Aut , typename Int1 , typename Int2 >
automaton vcsn::dyn::detail::multiply_repeated (const automaton &a, int min, int max)
 Bridge (multiply). More...
 
template<typename ValueSet >
ValueSet::value_t vcsn::multiply (const ValueSet &vs, const typename ValueSet::value_t &lhs, const typename ValueSet::value_t &rhs)
 Product (concatenation) of expressions/labels/polynomials/weights. More...
 
template<typename ExpSetLhs , typename ExpSetRhs >
expression vcsn::dyn::detail::multiply_expression (const expression &lhs, const expression &rhs)
 Bridge (multiply). More...
 
template<typename ExpSetLhs , typename ExpSetRhs >
expression vcsn::dyn::detail::concatenate_expression (const expression &lhs, const expression &rhs)
 Bridge (concatenate). More...
 
template<typename ExpSet >
ExpSet::value_t vcsn::multiply (const ExpSet &rs, const typename ExpSet::value_t &r, int min, int max)
 
template<typename ExpSet , typename Int1 , typename Int2 >
expression vcsn::dyn::detail::multiply_expression_repeated (const expression &re, int min, int max)
 Bridge (multiply). More...
 
template<typename LabelSetLhs , typename LabelSetRhs >
label vcsn::dyn::detail::multiply_label (const label &lhs, const label &rhs)
 Bridge (multiply). More...
 
template<typename PolynomialSetLhs , typename PolynomialSetRhs >
polynomial vcsn::dyn::detail::multiply_polynomial (const polynomial &lhs, const polynomial &rhs)
 Bridge (multiply). More...
 
template<typename WeightSetLhs , typename WeightSetRhs >
weight vcsn::dyn::detail::multiply_weight (const weight &lhs, const weight &rhs)
 Bridge (multiply). More...
 
template<typename WeightSet , typename Int1 , typename Int2 >
weight vcsn::dyn::detail::multiply_weight_repeated (const weight &wgt, int min, int max)
 Bridge (multiply). More...