• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

LearnLib / automatalib / 13100258666

02 Feb 2025 03:46PM UTC coverage: 92.108% (+0.1%) from 92.01%
13100258666

push

github

mtf90
provide some default methods for {Mutable,]ProbabilisticMealy

including tests

4 of 4 new or added lines in 2 files covered. (100.0%)

18 existing lines in 7 files now uncovered.

16609 of 18032 relevant lines covered (92.11%)

1.7 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/core/src/main/java/net/automatalib/graph/impl/CompactSimpleBidiGraph.java
1
/* Copyright (C) 2013-2025 TU Dortmund University
2
 * This file is part of AutomataLib <https://automatalib.net>.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *     http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package net.automatalib.graph.impl;
17

18
import net.automatalib.graph.base.AbstractCompactUniversalBidiGraph;
19

20
/**
21
 * A compact bi-directional graph representation that supports arbitrary edge properties.
22
 *
23
 * @param <EP>
24
 *         edge property type
25
 */
26
public class CompactSimpleBidiGraph<EP> extends AbstractCompactUniversalBidiGraph<Void, EP> {
27

28
    public CompactSimpleBidiGraph() {
2✔
29
        // default constructor
30
    }
2✔
31

32
    public CompactSimpleBidiGraph(int initialCapacity) {
33
        super(initialCapacity);
1✔
34
    }
1✔
35

36
    @Override
UNCOV
37
    public void setNodeProperty(int node, Void property) {}
×
38

39
    @Override
40
    public Void getNodeProperty(int node) {
41
        return null;
2✔
42
    }
43

44
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc