File tree Expand file tree Collapse file tree 20 files changed +224
-37
lines changed
src/main/java/com/github/javabdd Expand file tree Collapse file tree 20 files changed +224
-37
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
3
+ <!--
4
+ Copyright (c) 2021, 2022 John Whaley and others
5
+
6
+ See the CONTRIBUTORS file(s) distributed with this work for additional
7
+ information regarding copyright ownership.
8
+
9
+ This program and the accompanying materials are made available under the
10
+ terms of the GNU Library General Public License v2 or later, which is
11
+ available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12
+
13
+ SPDX-License-Identifier: LGPL-2.0-or-later
14
+ -->
15
+
3
16
<fileset-config file-format-version =" 1.2.0" simple-config =" true" sync-formatter =" false" >
4
17
<local-check-config name =" JavaBDD Checkstyle" location =" checkstyle.xml" type =" project" description =" JavaBDD Checkstyle." >
5
18
<additional-data name =" protect-config-file" value =" false" />
Original file line number Diff line number Diff line change
1
+ # #############################################################################
2
+ # Copyright (c) 2020, 2022 John Whaley and others
3
+ #
4
+ # See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ # information regarding copyright ownership.
6
+ #
7
+ # This program and the accompanying materials are made available under the
8
+ # terms of the GNU Library General Public License v2 or later, which is
9
+ # available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ #
11
+ # SPDX-License-Identifier: LGPL-2.0-or-later
12
+ # #############################################################################
13
+
1
14
/target /
2
15
/pom.xml.releaseBackup
3
16
/release.properties
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ It is based on trunk revision r483 from 2011-11-24.
30
30
31
31
See [ CHANGES.md] ( CHANGES.md ) for all changes that have been made in this fork.
32
32
33
+ See [ CONTRIBUTORS.md] [ CONTRIBUTORS.md ] for all contributors.
34
+
33
35
## License
34
36
35
37
This project inherits the license from the Sourceforge project it is forked
Original file line number Diff line number Diff line change
1
+ # #############################################################################
2
+ # Copyright (c) 2020, 2022 John Whaley and others
3
+ #
4
+ # See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ # information regarding copyright ownership.
6
+ #
7
+ # This program and the accompanying materials are made available under the
8
+ # terms of the GNU Library General Public License v2 or later, which is
9
+ # available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ #
11
+ # SPDX-License-Identifier: LGPL-2.0-or-later
12
+ # #############################################################################
13
+
1
14
source.. = src/main/java/
2
15
bin.includes = .,\
3
16
META-INF/
Original file line number Diff line number Diff line change
1
+ <!--
2
+ Copyright (c) 2020, 2022 John Whaley and others
3
+
4
+ See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ information regarding copyright ownership.
6
+
7
+ This program and the accompanying materials are made available under the
8
+ terms of the GNU Library General Public License v2 or later, which is
9
+ available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+
11
+ SPDX-License-Identifier: LGPL-2.0-or-later
12
+ -->
13
+
1
14
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
15
3
16
<modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/bash
2
2
3
+ # #############################################################################
4
+ # Copyright (c) 2020, 2022 John Whaley and others
5
+ #
6
+ # See the CONTRIBUTORS file(s) distributed with this work for additional
7
+ # information regarding copyright ownership.
8
+ #
9
+ # This program and the accompanying materials are made available under the
10
+ # terms of the GNU Library General Public License v2 or later, which is
11
+ # available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12
+ #
13
+ # SPDX-License-Identifier: LGPL-2.0-or-later
14
+ # #############################################################################
15
+
3
16
if [[ ! -f release.properties ]]; then
4
17
echo " Need to prepare release first."
5
18
exit 1
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/bash
2
2
3
+ # #############################################################################
4
+ # Copyright (c) 2020, 2022 John Whaley and others
5
+ #
6
+ # See the CONTRIBUTORS file(s) distributed with this work for additional
7
+ # information regarding copyright ownership.
8
+ #
9
+ # This program and the accompanying materials are made available under the
10
+ # terms of the GNU Library General Public License v2 or later, which is
11
+ # available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12
+ #
13
+ # SPDX-License-Identifier: LGPL-2.0-or-later
14
+ # #############################################################################
15
+
3
16
mvn clean
4
17
rm -f pom.xml.releaseBackup
5
18
rm -f release.properties
Original file line number Diff line number Diff line change 1
- // BDD.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDBitVector.java, created Jul 14, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDDomain.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDException.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDFactory.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDFactoryIntImpl.java, created Jul 16, 2006 2:59:55 PM by jwhaley
2
- // Copyright (C) 2004-2006 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2004, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDPairing.java, created Jan 29, 2003 9:50:57 PM by jwhaley
2
- // Copyright (C) 2003 John Whaley
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BDDVarSet.java, created Jul 13, 2006 8:53:13 PM by jwhaley
2
- // Copyright (C) 2004-2006 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2004, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // BitString.java, created Wed May 16 17:26:33 2001 by joewhaley
2
- // Copyright (C) 2001-3 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2001, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // FindBestOrder.java, created Apr 2, 2004 10:43:21 PM 2004 by jwhaley
2
- // Copyright (C) 2004 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2004, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // JFactory.java, created Aug 1, 2003 7:06:47 PM by joewhaley
2
- // Copyright (C) 2003 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2003, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
Original file line number Diff line number Diff line change 1
- // TryVarOrder.java, created Apr 2, 2004 10:43:21 PM 2004 by jwhaley
2
- // Copyright (C) 2004 John Whaley <[email protected] >
3
- // Licensed under the terms of the GNU LGPL; see COPYING for details.
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ // Copyright (c) 2004, 2022 John Whaley and others
3
+ //
4
+ // See the CONTRIBUTORS file(s) distributed with this work for additional
5
+ // information regarding copyright ownership.
6
+ //
7
+ // This program and the accompanying materials are made available under the
8
+ // terms of the GNU Library General Public License v2 or later, which is
9
+ // available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10
+ //
11
+ // SPDX-License-Identifier: LGPL-2.0-or-later
12
+ //////////////////////////////////////////////////////////////////////////////
4
13
5
14
package com .github .javabdd ;
6
15
You can’t perform that action at this time.
0 commit comments