|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | +Copyright (C) 2013-2025 TU Dortmund University |
| 4 | +This file is part of LearnLib <https://learnlib.de>. |
| 5 | +
|
| 6 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | +you may not use this file except in compliance with the License. |
| 8 | +You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | +Unless required by applicable law or agreed to in writing, software |
| 13 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +See the License for the specific language governing permissions and |
| 16 | +limitations under the License. |
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + |
| 21 | + <parent> |
| 22 | + <groupId>de.learnlib</groupId> |
| 23 | + <artifactId>learnlib-algorithms-active-parent</artifactId> |
| 24 | + <version>0.19.0-SNAPSHOT</version> |
| 25 | + <relativePath>../pom.xml</relativePath> |
| 26 | + </parent> |
| 27 | + |
| 28 | + <artifactId>learnlib-sparse</artifactId> |
| 29 | + |
| 30 | + <name>LearnLib :: Algorithms :: Sparse</name> |
| 31 | + <description> |
| 32 | + This artifact provides the implementation of the Sparse OT learning algorithm as described in the paper |
| 33 | + "Learning Mealy Machines with Sparse Observation Tables" (https://doi.org/10.1007/978-3-032-05792-1_10) by |
| 34 | + Wolffhardt Schwabe, Paul Kogel, and Sabine Glesner. |
| 35 | + </description> |
| 36 | + |
| 37 | + <dependencies> |
| 38 | + <!-- internal --> |
| 39 | + <dependency> |
| 40 | + <groupId>de.learnlib</groupId> |
| 41 | + <artifactId>learnlib-api</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>de.learnlib</groupId> |
| 45 | + <artifactId>learnlib-counterexamples</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>de.learnlib</groupId> |
| 49 | + <artifactId>learnlib-util</artifactId> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <!-- external --> |
| 53 | + <dependency> |
| 54 | + <groupId>net.automatalib</groupId> |
| 55 | + <artifactId>automata-api</artifactId> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>net.automatalib</groupId> |
| 59 | + <artifactId>automata-commons-util</artifactId> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>net.automatalib</groupId> |
| 63 | + <artifactId>automata-core</artifactId> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>org.checkerframework</groupId> |
| 68 | + <artifactId>checker-qual</artifactId> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <!-- testing --> |
| 72 | + <dependency> |
| 73 | + <groupId>de.learnlib.testsupport</groupId> |
| 74 | + <artifactId>learnlib-learner-it-support</artifactId> |
| 75 | + </dependency> |
| 76 | + </dependencies> |
| 77 | +</project> |
0 commit comments