All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ib.automata-serialization-taf.0.12.0.source-code.module-info Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
/* Copyright (C) 2013-2025 TU Dortmund University
 * This file is part of AutomataLib .
 *
 * 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 contains (de-) serializers for the Textual Automaton Format (TAF). TAF is a custom bitstream format.
 * 

* This module is provided by the following Maven dependency: *

 * <dependency>
 *   <groupId>net.automatalib</groupId>
 *   <artifactId>automata-serialization-taf</artifactId>
 *   <version>${version}</version>
 * </dependency>
 * 
*/ open module net.automatalib.serialization.taf { requires net.automatalib.api; requires net.automatalib.common.util; requires net.automatalib.core; requires org.slf4j; // annotations are 'provided'-scoped and do not need to be loaded at runtime requires static org.checkerframework.checker.qual; exports net.automatalib.serialization.taf.parser; exports net.automatalib.serialization.taf.writer; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy