Skip to content
This repository was archived by the owner on May 23, 2022. It is now read-only.

Commit 1269fba

Browse files
committed
Fix a bug in PCKBTest
1 parent b66421d commit 1269fba

File tree

2 files changed

+3
-52
lines changed

2 files changed

+3
-52
lines changed

pom.xml

Lines changed: 2 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>at.tugraz.ist.ase</groupId>
88
<artifactId>choco-kb</artifactId>
9-
<version>1.1.11-dev</version>
9+
<version>1.2</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>
@@ -17,62 +17,13 @@
1717
</properties>
1818

1919
<dependencies>
20-
<dependency>
21-
<groupId>at.tugraz.ist.ase</groupId>
22-
<artifactId>common</artifactId>
23-
<version>1.1.13-dev</version>
24-
</dependency>
25-
2620
<dependency>
2721
<groupId>at.tugraz.ist.ase</groupId>
2822
<artifactId>fm</artifactId>
29-
<version>1.1.9-dev</version>
30-
</dependency>
31-
32-
<dependency>
33-
<groupId>org.choco-solver</groupId>
34-
<artifactId>choco-solver</artifactId>
35-
<version>4.10.6</version>
36-
</dependency>
37-
38-
<dependency>
39-
<groupId>com.google.guava</groupId>
40-
<artifactId>guava</artifactId>
41-
<version>31.0.1-jre</version>
42-
<scope>compile</scope>
43-
</dependency>
44-
45-
<dependency>
46-
<groupId>org.projectlombok</groupId>
47-
<artifactId>lombok</artifactId>
48-
<version>1.18.22</version>
49-
</dependency>
50-
51-
<dependency>
52-
<groupId>ch.qos.logback</groupId>
53-
<artifactId>logback-classic</artifactId>
54-
<version>1.2.8</version>
55-
<scope>compile</scope>
56-
</dependency>
57-
58-
<dependency>
59-
<groupId>org.junit.jupiter</groupId>
60-
<artifactId>junit-jupiter</artifactId>
61-
<version>5.8.2</version>
62-
<scope>compile</scope>
23+
<version>1.2</version>
6324
</dependency>
6425
</dependencies>
6526

66-
<!-- <build>-->
67-
<!-- <plugins>-->
68-
<!-- <plugin>-->
69-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
70-
<!-- <artifactId>maven-surefire-plugin</artifactId>-->
71-
<!-- <version>2.22.0</version>-->
72-
<!-- </plugin>-->
73-
<!-- </plugins>-->
74-
<!-- </build>-->
75-
7627
<distributionManagement>
7728
<repository>
7829
<id>github</id>

src/test/java/at/tugraz/ist/ase/knowledgebases/pc/PCKBTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static void setUp() {
3434

3535
@Test
3636
void testSomeTestCases() {
37-
kb = new PCKB(false);
37+
PCKB kb = new PCKB(false);
3838
Model model = kb.getModelKB();
3939

4040
// pro_freqD=200 -violated

0 commit comments

Comments
 (0)