Older
-
-
-
-
-
-
-
-
r52
(Removal of unnecessary comments and correction of misspellin...) committed by DirkBeye...@gmail.com
- Removal of unnecessary comments and correction of misspelling (depht).
Removal of unnecessary comments and correction of misspelling (depht).
-
r51
(Issue 11:
Status: New
Owner: ----
New issue 11 by loganje....) committed by DirkBeye...@gmail.com
- Issue 11 :
Status: New
Owner: ----
New issue 11 by loganje...@gmail.com: Silence Java warnings
http://code.google.com/p/crocopat/issues/detail?id=11
What steps will reproduce the problem?
1. Compile VisuBDD
2.
3.
What is the expected output? What do you see instead?
Both OpenJDK and gcj emit a large number of warnings. This is largely due to the use of pre-Java 5
java.util containers.
Please use labels and text to provide additional information.
If you have any interest in moving up to Java 5 and generics, then the attached patch is a start.
It does the following:
- Removes unused imports (as reported by gcj).
- Removes unnecessary type casts.
- Adds generics to bare java.util.List declarations.
- Implements the List interface with unsynchronized ArrayList instead of synchronized Vector. I
reviewed the code to see if this was safe, and it appeared to me to be so. Please check me on this,
though.
- Changes "new String(string_variable)" to "string_variable". This is safe since Java strings are
immutable.
- Changes "new Double(number)" to "Double.valueOf(number)" to (possibly) take advantage of caching.
- Replaces some loops that use integer counters with iteration over Lists.
- Updates some calls to deprecated methods.
The patch does NOT correct the spelling of "depht". :-)
Issue 11 :
Status: New
Owner: ----
New issue 11 by loganje...@gmail.com: Silence Java warnings
http://code.google.com/p/crocopat/issues/detail?id=11
What steps will reproduce the problem?
1. Compile VisuBDD
2.
3.
What is the expected output? What do you see instead?
Both OpenJDK and gcj emit a large number of warnings. This is largely due to the use of pre-Java 5
java.util containers.
Please use labels and text to provide additional information.
If you have any interest in moving up to Java 5 and generics, then the attached patch is a start.
It does the following:
- Removes unused imports (as reported by gcj).
- Removes unnecessary type casts.
- Adds generics to bare java.util.List declarations.
- Implements the List interface with unsynchronized ArrayList instead of synchronized Vector. I
reviewed the code to see if this was safe, and it appeared to me to be so. Please check me on this,
though.
- Changes "new String(string_variable)" to "string_variable". This is safe since Java strings are
immutable.
- Changes "new Double(number)" to "Double.valueOf(number)" to (possibly) take advantage of caching.
- Replaces some loops that use integer counters with iteration over Lists.
- Updates some calls to deprecated methods.
The patch does NOT correct the spelling of "depht". :-)
-
-
r50
(Cleanup after fix for Issue 9: cstdlib not necessary in relO...) committed by DirkBeye...@gmail.com
- Cleanup after fix for Issue 9 : cstdlib not necessary in relObject, because it is included in bddBdd
and bddSymTab.
Cleanup after fix for Issue 9 : cstdlib not necessary in relObject, because it is included in bddBdd
and bddSymTab.
-
-
-
r49
(Issue 9:
Status: New
Owner: ----
New issue 9 by loganje......) committed by DirkBeye...@gmail.com
- Issue 9 :
Status: New
Owner: ----
New issue 9 by loganje...@gmail.com: GCC streamlined header architecture
http://code.google.com/p/crocopat/issues/detail?id=9
What steps will reproduce the problem?
1. Attempt to build CrocoPat 2.1.4 with GCC 4.5 or later
2.
3.
What is the expected output? What do you see instead?
The build fails with error messages indicating that various symbols are not defined.
Please use labels and text to provide additional information.
This is a common problem with C++ projects and GCC 4.5, since that version of GCC introduced a
"streamlined header architecture". Many header files which used to be included implicitly must now
be included explicitly. The attached patch fixes the problem.
Issue 9 :
Status: New
Owner: ----
New issue 9 by loganje...@gmail.com: GCC streamlined header architecture
http://code.google.com/p/crocopat/issues/detail?id=9
What steps will reproduce the problem?
1. Attempt to build CrocoPat 2.1.4 with GCC 4.5 or later
2.
3.
What is the expected output? What do you see instead?
The build fails with error messages indicating that various symbols are not defined.
Please use labels and text to provide additional information.
This is a common problem with C++ projects and GCC 4.5, since that version of GCC introduced a
"streamlined header architecture". Many header files which used to be included implicitly must now
be included explicitly. The attached patch fixes the problem.
-
r48
(Tracking new working configuration: gcc 4.4.4 and bison 2.4....) committed by DirkBeye...@gmail.com
- Tracking new working configuration: gcc 4.4.4 and bison 2.4.1
Tracking new working configuration: gcc 4.4.4 and bison 2.4.1
-
-
-
-
-
-
r47
(Drawings of a Binary Decision Tree.) committed by DirkBeye...@gmail.com
- Drawings of a Binary Decision Tree.
Drawings of a Binary Decision Tree.
-
-
-
-
-
r45
(Shell-like comments using # at the beginning of a line are n...) committed by DirkBeyer7201
- Shell-like comments using # at the beginning of a line are now supported. Cf. Issue 7 .
Shell-like comments using # at the beginning of a line are now supported. Cf. Issue 7 .
-
-
r44
(Fixed yyFlexLexer problem to make it more portable (3).) committed by DirkBeyer7201
- Fixed yyFlexLexer problem to make it more portable (3).
Fixed yyFlexLexer problem to make it more portable (3).
-
r43
(Fixed yyFlexLexer problem to make it more portable (2).) committed by DirkBeyer7201
- Fixed yyFlexLexer problem to make it more portable (2).
Fixed yyFlexLexer problem to make it more portable (2).
-
r42
(Fixed yyFlexLexer problem to make it more portable.) committed by DirkBeyer7201
- Fixed yyFlexLexer problem to make it more portable.
Fixed yyFlexLexer problem to make it more portable.
-
r41
(Maintenance changes required/suggested by new version of com...) committed by DirkBeyer7201
- Maintenance changes required/suggested by new version of compilation environment.
Maintenance changes required/suggested by new version of compilation environment.
-
-
|