Skip to content

Commit 70e9a84

Browse files
added missing license headers
1 parent 4b8de22 commit 70e9a84

5 files changed

Lines changed: 105 additions & 0 deletions

File tree

pm4py/algo/discovery/genetic/util.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
'''
2+
PM4Py – A Process Mining Library for Python
3+
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as
7+
published by the Free Software Foundation, either version 3 of the
8+
License, or any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see this software project's root or
17+
visit <https://www.gnu.org/licenses/>.
18+
19+
Website: https://processintelligence.solutions
20+
Contact: info@processintelligence.solutions
21+
'''
122
# Author: Maximilian Josef Frank (https://orcid.org/0000-0002-0714-7748)
223

324
import random

pm4py/algo/discovery/genetic/variants/classic.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
'''
2+
PM4Py – A Process Mining Library for Python
3+
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as
7+
published by the Free Software Foundation, either version 3 of the
8+
License, or any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see this software project's root or
17+
visit <https://www.gnu.org/licenses/>.
18+
19+
Website: https://processintelligence.solutions
20+
Contact: info@processintelligence.solutions
21+
'''
122
# Author: Maximilian Josef Frank (https://orcid.org/0000-0002-0714-7748)
223

324
from collections import defaultdict

pm4py/algo/evaluation/precision/variants/automaton_after_align.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
'''
2+
PM4Py – A Process Mining Library for Python
3+
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as
7+
published by the Free Software Foundation, either version 3 of the
8+
License, or any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see this software project's root or
17+
visit <https://www.gnu.org/licenses/>.
18+
19+
Website: https://processintelligence.solutions
20+
Contact: info@processintelligence.solutions
21+
'''
122
from copy import copy
223
from enum import Enum
324
from typing import Any, Dict, List, Optional, Set, Tuple, Union

pm4py/objects/genetic_matrix/obj.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
'''
2+
PM4Py – A Process Mining Library for Python
3+
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as
7+
published by the Free Software Foundation, either version 3 of the
8+
License, or any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see this software project's root or
17+
visit <https://www.gnu.org/licenses/>.
18+
19+
Website: https://processintelligence.solutions
20+
Contact: info@processintelligence.solutions
21+
'''
122
# Author: Maximilian Josef Frank (https://orcid.org/0000-0002-0714-7748)
223

324
from typing import Dict, FrozenSet, List

pm4py/util/timeout.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
'''
2+
PM4Py – A Process Mining Library for Python
3+
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
4+
5+
This program is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Affero General Public License as
7+
published by the Free Software Foundation, either version 3 of the
8+
License, or any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU Affero General Public License for more details.
14+
15+
You should have received a copy of the GNU Affero General Public License
16+
along with this program. If not, see this software project's root or
17+
visit <https://www.gnu.org/licenses/>.
18+
19+
Website: https://processintelligence.solutions
20+
Contact: info@processintelligence.solutions
21+
'''
122
from threading import Thread
223
from typing import Any, Callable, Dict, Optional, Tuple
324
import ctypes

0 commit comments

Comments
 (0)