.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * This module provides the implementation of the Sparse OT learning algorithm as described in the paper "Learning Mealy Machines with Sparse Observation Tables".
+ *
+ * This module is provided by the following Maven dependency:
+ *
+ * <dependency>
+ * <groupId>de.learnlib</groupId>
+ * <artifactId>learnlib-sparse</artifactId>
+ * <version>${version}</version>
+ * </dependency>
+ *
+ */
+open module de.learnlib.algorithm.sparse {
+
+ requires de.learnlib.common.counterexample;
+ requires de.learnlib.common.util;
+ requires de.learnlib.api;
+ requires net.automatalib.core;
+ requires net.automatalib.api;
+ requires net.automatalib.common.util;
+
+ exports de.learnlib.algorithm.sparse;
+}
diff --git a/algorithms/active/sparse/src/test/java/sparse/it/SparseIT.java b/algorithms/active/sparse/src/test/java/sparse/it/SparseIT.java
new file mode 100644
index 000000000..c708097a3
--- /dev/null
+++ b/algorithms/active/sparse/src/test/java/sparse/it/SparseIT.java
@@ -0,0 +1,33 @@
+/* Copyright (C) 2013-2025 TU Dortmund University
+ * This file is part of LearnLib .
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package sparse.it;
+
+import de.learnlib.algorithm.sparse.SparseLearner;
+import de.learnlib.oracle.MembershipOracle.MealyMembershipOracle;
+import de.learnlib.testsupport.it.learner.AbstractMealyLearnerIT;
+import de.learnlib.testsupport.it.learner.LearnerVariantList;
+import net.automatalib.alphabet.Alphabet;
+
+public class SparseIT extends AbstractMealyLearnerIT {
+
+ @Override
+ protected void addLearnerVariants(Alphabet alphabet,
+ int targetSize,
+ MealyMembershipOracle mqOracle,
+ LearnerVariantList.MealyLearnerVariantList variants) {
+ variants.addLearnerVariant("sparse", new SparseLearner<>(alphabet, mqOracle));
+ }
+}