Vcsn  2.2
Be Rational
zmin.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vcsn/core/join.hh>
4 #include <vcsn/misc/raise.hh>
5 #include <vcsn/misc/stream.hh> // eat
6 #include <vcsn/weightset/fwd.hh>
9 
10 namespace vcsn
11 {
12  namespace detail
13  {
14  class zmin_impl
15  : public min_plus_impl<int>
16  {
17  public:
19  using self_t = zmin;
20  using value_t = typename super_t::value_t;
21 
22  static symbol sname()
23  {
24  static auto res = symbol{"zmin"};
25  return res;
26  }
27 
29  static zmin make(std::istream& is)
30  {
31  eat(is, sname());
32  return {};
33  }
34 
35  using super_t::conv;
36  static value_t
38  {
39  return v;
40  }
41 
42  static constexpr bool has_lightening_weights() { return true; }
43 
44  std::ostream&
45  print_set(std::ostream& o, format fmt = {}) const
46  {
47  switch (fmt.kind())
48  {
49  case format::latex:
50  o << "\\mathbb{Z}_{\\text{min}}";
51  break;
52  case format::sname:
53  o << sname();
54  break;
55  case format::text:
56  o << "Zmin";
57  break;
58  case format::utf8:
59  o << "ℤmin";
60  break;
61  case format::raw:
62  assert(0);
63  break;
64  }
65  return o;
66  }
67  };
68 
71  }
72 
73  template <>
74  struct is_tropical<zmin> : std::true_type
75  {};
76 }
Print as rich UTF-8 text, escaped.
Definition: format.hh:28
typename super_t::value_t value_t
Definition: zmin.hh:20
static value_t conv(self_t, value_t v)
Definition: zmin.hh:37
VCSN_JOIN_SIMPLE(b, b)
Definition: a-star.hh:8
Print for LaTeX.
Definition: format.hh:20
static zmin make(std::istream &is)
Build from the description in is.
Definition: zmin.hh:29
Print as is. For instance, don't try to escape labels.
Definition: format.hh:22
An input/output format for valuesets.
Definition: format.hh:11
char eat(std::istream &is, char c)
Check lookahead character and advance.
Definition: stream.cc:37
Provide a variadic mul on top of a binary mul(), and one().
Definition: fwd.hh:46
static symbol sname()
Definition: zmin.hh:22
boost::flyweight< std::string, boost::flyweights::no_tracking, boost::flyweights::intermodule_holder > symbol
An internalized string.
Definition: symbol.hh:23
Print as plain (ASCII) text, escaped.
Definition: format.hh:26
weightset_mixin< detail::zmin_impl > zmin
Definition: fwd.hh:57
std::istringstream is
The input stream: the specification to translate.
Definition: translate.cc:380
Print as a parsable type string.
Definition: format.hh:24
std::ostream & print_set(std::ostream &o, format fmt={}) const
Definition: zmin.hh:45
static constexpr bool has_lightening_weights()
Definition: zmin.hh:42
weightset_mixin< detail::b_impl > b
Definition: fwd.hh:48
static value_t conv(b, b::value_t v)
Definition: min-plus.hh:122