Skip to content

Commit 9a59fb9

Browse files
Renamed DiffBlue -> Diffblue
1 parent 19858f9 commit 9a59fb9

File tree

51 files changed

+58
-58
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+58
-58
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Source of benchmark:
2-
https://github.com/DiffBlue-benchmarks/java-test
2+
https://github.com/Diffblue-benchmarks/java-test

regression/strings/RegexSubstitution01/RegexSubstitution01.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ public class RegexSubstitution01
44
{
55
public static void main(String[] args)
66
{
7-
String firstString = "DiffBlue ***";
7+
String firstString = "Diffblue ***";
88
String secondString = "Automatic Test Case Generation";
99

1010
firstString = firstString.replaceAll("\\*", "^");
1111

12-
assert firstString.equals("DiffBlue ^^^");
12+
assert firstString.equals("Diffblue ^^^");
1313

1414
secondString = secondString.replaceAll("Automatic", "Automated");
1515

regression/strings/RegexSubstitution02/RegexSubstitution02.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class RegexSubstitution02
44
{
55
public static void main(String[] args)
66
{
7-
String firstString = "DiffBlue ***";
7+
String firstString = "Diffblue ***";
88
String secondString = "Automatic Test Case Generation";
99

1010
firstString = firstString.replaceAll("\\*", "^");

regression/strings/RegexSubstitution03/RegexSubstitution03.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ public class RegexSubstitution03
44
{
55
public static void main(String[] args)
66
{
7-
String firstString = "DiffBlue ***";
7+
String firstString = "Diffblue ***";
88
String secondString = "Automatic Test Case Generation";
99

1010
firstString = firstString.replaceAll("\\*", "^");
1111

12-
assert firstString.equals("DiffBlue ^^^");
12+
assert firstString.equals("Diffblue ^^^");
1313

1414
secondString = secondString.replaceAll("Automatic", "Automated");
1515

regression/strings/StringBuilderChars01/StringBuilderChars01.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ public class StringBuilderChars01
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
66

7-
assert buffer.toString().equals("DiffBlue Limited");
7+
assert buffer.toString().equals("Diffblue Limited");
88
assert buffer.charAt(0)!=buffer.charAt(4);
99

1010
char[] charArray = new char[buffer.length()];

regression/strings/StringBuilderChars02/StringBuilderChars02.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class StringBuilderChars02
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
6-
assert buffer.toString().equals("DiffBlue Limitted");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
6+
assert buffer.toString().equals("Diffblue Limitted");
77
}
88
}

regression/strings/StringBuilderChars03/StringBuilderChars03.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class StringBuilderChars03
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
66
assert buffer.charAt(0)==buffer.charAt(4);
77
}
88
}

regression/strings/StringBuilderChars04/StringBuilderChars04.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class StringBuilderChars04
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
66

77
char[] charArray = new char[buffer.length()];
88
buffer.getChars(0, buffer.length(), charArray, 0);

regression/strings/StringBuilderChars05/StringBuilderChars05.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class StringBuilderChars05
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
66
buffer.setCharAt(0, 'H');
77
buffer.setCharAt(6, 'T');
88
assert buffer.toString().equals("HiffBllTe Limited");

regression/strings/StringBuilderChars06/StringBuilderChars06.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class StringBuilderChars06
22
{
33
public static void main(String[] args)
44
{
5-
StringBuilder buffer = new StringBuilder("DiffBlue Limited");
5+
StringBuilder buffer = new StringBuilder("Diffblue Limited");
66
buffer.reverse();
77
assert buffer.toString().equals("detimiL eTlBffiiH");
88
}

regression/strings/StringConcatenation01/StringConcatenation01.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ public class StringConcatenation01
33
public static void main(String[] args)
44
{
55
String s1 = "Happy at";
6-
String s2 = " DiffBlue";
6+
String s2 = " Diffblue";
77

88
assert s1.equals("Happy at");
9-
assert s2.equals(" DiffBlue");
9+
assert s2.equals(" Diffblue");
1010

1111
String tmp=s1.concat(s2);
12-
assert tmp.equals("Happy at DiffBlue");
12+
assert tmp.equals("Happy at Diffblue");
1313

1414
tmp=s1;
1515
assert tmp.equals("Happy at");

regression/strings/StringConcatenation02/StringConcatenation02.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ public class StringConcatenation02
33
public static void main(String[] args)
44
{
55
String s1 = "Happy at";
6-
String s2 = " DiffBlue";
6+
String s2 = " Diffblue";
77
assert s1.equals("Happy at ");
8-
assert s2.equals(" DiffBlue");
8+
assert s2.equals(" Diffblue");
99
}
1010
}

regression/strings/StringConcatenation03/StringConcatenation03.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ public class StringConcatenation03
33
public static void main(String[] args)
44
{
55
String s1 = "Happy at";
6-
String s2 = " DiffBlue";
6+
String s2 = " Diffblue";
77

88
System.out.printf(
99
"Result of s1.concat(s2) = %s\n", s1.concat(s2));

src/analyses/does_remove_const.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Analyses
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/analyses/does_remove_const.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Analyses
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88
/// \file

src/ansi-c/c_nondet_symbol_factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: C Nondet Symbol Factory
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/ansi-c/c_nondet_symbol_factory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: C Nondet Symbol Factory
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/goto-analyzer/goto_analyzer_parse_options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ void goto_analyzer_parse_optionst::help()
435435
std::cout << " * *\n";
436436

437437
std::cout <<
438-
"* * Daniel Kroening, DiffBlue * *\n"
438+
"* * Daniel Kroening, Diffblue * *\n"
439439
"* * [email protected] * *\n"
440440
"\n"
441441
"Usage: Purpose:\n"

src/goto-programs/resolve_concrete_function_call.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: GOTO Program Utilities
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/goto-programs/resolve_concrete_function_call.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: GOTO Program Utilities
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/java_bytecode/ci_lazy_methods.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Java Bytecode
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88
#include "ci_lazy_methods.h"

src/java_bytecode/ci_lazy_methods.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Java Bytecode
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/java_bytecode/java_pointer_casts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: JAVA Pointer Casts
44
5-
Author: DiffBlue
5+
Author: Diffblue
66
77
\*******************************************************************/
88

src/java_bytecode/select_pointer_type.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Java Bytecode Language Conversion
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/java_bytecode/select_pointer_type.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Java Bytecode Language Conversion
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88
#ifndef CPROVER_JAVA_BYTECODE_SELECT_POINTER_TYPE_H

src/langapi/language_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
1+
// Copyright 2016-2017 Diffblue Limited. All Rights Reserved.
22

33

44
#include "language_util.h"

src/pointer-analysis/value_set.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
1+
// Copyright 2016-2017 Diffblue Limited. All Rights Reserved.
22

33
/// \file
44
/// Value Set

src/util/expr_iterator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: exprt iterator module
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

src/util/recording_symbol_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
1+
// Copyright 2016-2017 Diffblue Limited. All Rights Reserved.
22

33
/// \file
44
/// A symbol table that records which entries have been updated

src/util/symbol_table.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
1+
// Copyright 2016-2017 Diffblue Limited. All Rights Reserved.
22

33
#include "symbol_table.h"
44

src/util/symbol_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2017 DiffBlue Limited. All Rights Reserved.
1+
// Copyright 2016-2017 Diffblue Limited. All Rights Reserved.
22

33
/// \file
44
/// Symbol table

unit/analyses/ai/ai_simplify_lhs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Unit tests for ai_domain_baset::ai_simplify_lhs
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/analyses/does_remove_const/does_expr_lose_const.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Does Remove Const Unit Tests
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/analyses/does_remove_const/does_remove_const_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Does Remove Const Unit Tests
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/analyses/does_remove_const/does_type_preserve_const_correctness.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Does Remove Const Unit Tests
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/analyses/does_remove_const/is_type_at_least_as_const_as.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Does Remove Const Unit Tests
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/catch_example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Example Catch Tests
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/java_bytecode/java_bytecode_convert_class/convert_abstract_class.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Unit tests for converting abstract classes
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/miniBDD_new.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Module: Unit tests for miniBDD
44
5-
Author: DiffBlue Limited. All rights reserved.
5+
Author: Diffblue Limited. All rights reserved.
66
77
\*******************************************************************/
88

unit/solvers/refinement/string_constraint_generator_valueof/calculate_max_string_length.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Module: Unit tests for calculate_max_string_length in
44
solvers/refinement/string_constraint_generator_valueof.cpp
55
6-
Author: DiffBlue Limited. All rights reserved.
6+
Author: Diffblue Limited. All rights reserved.
77
88
\*******************************************************************/
99

unit/solvers/refinement/string_constraint_generator_valueof/get_numeric_value_from_character.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Module: Unit tests for get_numeric_value_from_character in
44
solvers/refinement/string_constraint_generator_valueof.cpp
55
6-
Author: DiffBlue Limited. All rights reserved.
6+
Author: Diffblue Limited. All rights reserved.
77
88
\*******************************************************************/
99

unit/solvers/refinement/string_constraint_generator_valueof/is_digit_with_radix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Module: Unit tests for is_digit_with_radix in
44
solvers/refinement/string_constraint_generator_valueof.cpp
55
6-
Author: DiffBlue Limited. All rights reserved.
6+
Author: Diffblue Limited. All rights reserved.
77
88
\*******************************************************************/
99

unit/solvers/refinement/string_refinement/concretize_array.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Module: Unit tests for concretize_array_expression in
44
solvers/refinement/string_refinement.cpp
55
6-
Author: DiffBlue Limited. All rights reserved.
6+
Author: Diffblue Limited. All rights reserved.
77
88
\*******************************************************************/
99

0 commit comments

Comments
 (0)