-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from VeriFIT/change_licence_to_mit
Change licence to MIT #major
- Loading branch information
Showing
46 changed files
with
82 additions
and
1,181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
This list reflects only the core team around Mata, and it may be incomplete. | ||
|
||
For a list of all people who have contributed to the codebase, see | ||
[GitHub's list of contributors](https://github.com/VeriFIT/mata/graphs/contributors). | ||
|
||
## The Core Mata Group | ||
|
||
- **Lukáš Holík** ([kilohsakul](https://github.com/kilohsakul), [[email protected]](mailto:[email protected])): the supreme leader, the emperor of theory; | ||
- **Ondřej Lengál** ([ondrik](https://github.com/ondrik), [[email protected]](mailto:[email protected])): prototype developer and the world's tallest hobbit; | ||
- **David Chocholatý** ([Adda0](https://github.com/Adda0), [[email protected]](mailto:[email protected])): library maintainer; | ||
- **Tomáš Fiedor** ([tfiedor](https://github.com/tfiedor), [[email protected]](mailto:[email protected])): python binding maintainer; | ||
- **Juraj Síč** ([jurajsic](https://github.com/jurajsic), [[email protected]](mailto:[email protected])): library developer; | ||
- **Vojtěch Havlena** ([vhavlena](https://github.com/vhavlena/), [[email protected]](mailto:[email protected])): library developer; | ||
- **Martin Hruška** ([martinhruska](https://github.com/martinhruska), [[email protected]](mailto:[email protected])): library design advisor, former library developer; | ||
- **Tomáš Vojnar** ([vojnar](https://github.com/vojnar), [[email protected]](mailto:[email protected])): the spiritual leader; | ||
|
||
## Special Thanks To | ||
|
||
- Tomáš Kocourek ([kocotom](https://github.com/kocotom/), [[email protected]](mailto:[email protected])): library developer for first AFA design; | ||
- Michal Horký ([MichalHorky](https://github.com/MichalHorky), [[email protected]](mailto:[email protected])): RE2 parser interface developer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,8 @@ | ||
//TODO: rename to intermediate_afa / afa-intermediate, or something like that. | ||
/* | ||
* inter-aut.hh -- intermediate representation of automata. | ||
* It represents automaton after parsing and before translation to particular automaton. | ||
* | ||
* Copyright (c) 2022 Martin Hruska <[email protected]> | ||
* | ||
* This file is a part of libmata. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* It represents automaton after parsing and before translation to particular automaton. | ||
*/ | ||
|
||
#ifndef MATA_INTER_AUT_HH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
// | ||
// Created by Lukáš Holík on 10.06.2023. | ||
// Based on | ||
/** | ||
SparseSet.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,4 @@ | ||
/* utils.hh -- various utilities | ||
* | ||
* Copyright (c) 2018 Ondrej Lengal <[email protected]> | ||
* | ||
* This file is a part of libmata. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
*/ | ||
|
||
#ifndef MATA_UTIL_HH_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @file | ||
* | ||
* @brief <Brief description of the file.> | ||
* | ||
* <(Optional) More elaborate description of the file.> | ||
* | ||
* @copyright @parblock | ||
* Mata: An automata library. | ||
* Copyright (C) 2022-2023, Mata group and contributors. | ||
* | ||
* Distributed under the MIT License. | ||
* (See accompanying file LICENSE or copy at https://opensource.org/license/mit/.) | ||
* @endparblock | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
""" | ||
<Brief description of the file.> | ||
<(Optional) More elaborate description of the file.> | ||
Mata: An automata library. | ||
Copyright (C) 2022-2023, Mata group and contributors. | ||
Distributed under the MIT License. | ||
(See accompanying file LICENSE or copy at https://opensource.org/license/mit/.) | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,7 @@ | ||
/* | ||
* inter-aut.hh -- intermediate representation of automata. | ||
* It represents automaton after parsing and before translation to particular automaton. | ||
* | ||
* Copyright (c) 2022 Martin Hruska <[email protected]> | ||
* | ||
* This file is a part of libmata. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* It represents automaton after parsing and before translation to particular automaton. | ||
*/ | ||
|
||
#include "mata/parser/inter-aut.hh" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.