Skip to content

Commit

Permalink
Merge branch 'action' of github.com:fmlab-iis/AutoQ into action
Browse files Browse the repository at this point in the history
  • Loading branch information
alan23273850 committed Sep 6, 2024
2 parents f8e3a5b + c0442ab commit 8d80904
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/autoq/aut_description.hh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public: // methods

/******************************************************/
/* inclusion.cc: checks language inclusion of two TAs */
bool operator<=(const Automata &o) const requires concrete_like<TT>;
bool operator<=(const Automata &o) const; // requires concrete_like<TT>;
bool operator>=(const Automata &o) const requires concrete_like<TT> { return o <= *this; }
bool operator==(const Automata &o) const requires concrete_like<TT> { return (*this <= o) && (o <= *this); }
bool operator!=(const Automata &o) const requires concrete_like<TT> { return !(*this == o); }
Expand Down
3 changes: 3 additions & 0 deletions src/inclusion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,9 @@ bool AUTOQ::Automata<AUTOQ::Symbol::Concrete>::operator<=(const Automata<AUTOQ::
return result;
}

template <typename Symbol>
bool AUTOQ::Automata<Symbol>::operator<=(const Automata<Symbol> &autB) const {}

bool AUTOQ::check_validity(Constraint C, const PredicateAutomata::Symbol &ps, const SymbolicAutomata::Symbol &te) {
std::string str(ps);
/* Replace all real(.) in C.content with .R and
Expand Down

0 comments on commit 8d80904

Please sign in to comment.