BUGSENG Mailman
Sign In
Sign Up
Manage this list
Sign In
Sign Up
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
PPL-devel
Thread
Start a new thread
Download
Threads by
month
----- 2025 -----
October
September
August
July
June
May
April
March
February
January
----- 2024 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2023 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2022 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2021 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2020 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2019 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2018 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2017 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2016 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2015 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2014 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2013 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2012 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2011 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2010 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2009 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2008 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2007 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2006 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2005 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2004 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2003 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2002 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2001 -----
December
November
October
September
August
July
June
ppl-devel@bugseng.com
August 2020
2 participants
26 discussions
[GIT] ppl/ppl(devel): Add braces.
by Roberto Bagnara
06 Aug '20
06 Aug '20
Module: ppl/ppl Branch: devel Commit: 71de0f2fc94ccf26026fe901a2ee574d71b686f0 URL:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=71de0f2fc94c…
Author: Roberto Bagnara <roberto.bagnara(a)bugseng.com> Date: Wed Aug 5 21:36:21 2020 +0200 Add braces. --- interfaces/C/ppl_c_implementation_common.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/interfaces/C/ppl_c_implementation_common.cc b/interfaces/C/ppl_c_implementation_common.cc index 4eee51add..fe95e8c8a 100644 --- a/interfaces/C/ppl_c_implementation_common.cc +++ b/interfaces/C/ppl_c_implementation_common.cc @@ -2555,8 +2555,9 @@ CATCH_ALL int ppl_io_print_variable(ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr || puts(f) < 0) + if (f == nullptr || puts(f) < 0) { return PPL_STDIO_ERROR; + } return 0; } CATCH_ALL @@ -2564,8 +2565,9 @@ CATCH_ALL int ppl_io_fprint_variable(FILE* stream, ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr || fputs(f, stream) < 0) + if (f == nullptr || fputs(f, stream) < 0) { return PPL_STDIO_ERROR; + } return 0; } CATCH_ALL @@ -2573,8 +2575,9 @@ CATCH_ALL int ppl_io_asprint_variable(char** strp, ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr) + if (f == nullptr) { return PPL_STDIO_ERROR; + } *strp = strdup(f); if (*strp == nullptr) { return PPL_ERROR_OUT_OF_MEMORY;
1
0
0
0
[GIT] ppl/ppl(devel): Use nullptr.
by Roberto Bagnara
06 Aug '20
06 Aug '20
Module: ppl/ppl Branch: devel Commit: 7138f8598b4dbaa6c6198498518a42d2d926fa54 URL:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=7138f8598b4d…
Author: Roberto Bagnara <roberto.bagnara(a)bugseng.com> Date: Wed Aug 5 21:09:11 2020 +0200 Use nullptr. --- demos/ppl_lcdd/ppl_lcdd.cc | 36 +++---- demos/ppl_lpsol/ppl_lpsol.c | 9 +- demos/ppl_pips/ppl_pips.cc | 48 ++++----- interfaces/C/ppl_c_implementation_common.cc | 48 ++++----- interfaces/C/ppl_c_implementation_common_defs.hh | 3 +- interfaces/C/ppl_interface_generator_c_cc_code.m4 | 8 +- interfaces/C/tests/formatted_output.c | 6 +- interfaces/C/tests/ppl_c_test.cc | 2 +- ...ppl_interface_generator_java_classes_cc_code.m4 | 9 +- interfaces/Java/jni/ppl_java_common.cc | 114 ++++++++++----------- interfaces/Java/jni/ppl_java_common_defs.hh | 4 +- interfaces/Java/jni/ppl_java_globals.cc | 10 +- interfaces/OCaml/ppl_ocaml_common.cc | 12 +-- .../ppl_interface_generator_sicstus_sd_cc.m4 | 2 +- interfaces/Prolog/SWI/pl_clpq.cc | 4 +- .../SWI/ppl_interface_generator_swiprolog_cc.m4 | 2 +- .../ppl_interface_generator_prolog_cc_code.m4 | 8 +- interfaces/Prolog/ppl_prolog_common.cc | 23 +++-- src/Affine_Space_defs.hh | 4 +- src/Any_Pointset_defs.hh | 6 +- src/BD_Shape_defs.hh | 18 ++-- src/BD_Shape_templates.hh | 8 +- src/Box_defs.hh | 8 +- src/Box_templates.hh | 10 +- src/CO_Tree.cc | 14 +-- src/CO_Tree_defs.hh | 2 +- src/CO_Tree_inlines.hh | 4 +- src/Coefficient.cc | 16 +-- src/Congruence.cc | 16 +-- src/Congruence_System.cc | 8 +- src/Congruence_System_inlines.hh | 2 +- src/Constraint.cc | 36 +++---- src/Constraint_System.cc | 8 +- src/Constraint_System_inlines.hh | 2 +- src/DB_Row_inlines.hh | 6 +- src/Dense_Row.cc | 10 +- src/Dense_Row_defs.hh | 2 +- src/Dense_Row_inlines.hh | 14 +-- src/Float_inlines.hh | 2 +- src/Float_templates.hh | 4 +- src/Generator.cc | 18 ++-- src/Generator_System.cc | 8 +- src/Generator_System_inlines.hh | 2 +- src/Grid_Generator.cc | 10 +- src/Grid_Generator_System.cc | 8 +- src/Grid_defs.hh | 20 ++-- src/Grid_nonpublic.cc | 6 +- src/Grid_public.cc | 6 +- src/Grid_widenings.cc | 10 +- src/Handler_inlines.hh | 2 +- src/Init.cc | 6 +- src/Linear_Expression.cc | 8 +- src/Linear_Expression_defs.hh | 8 +- src/Linear_Expression_inlines.hh | 26 ++--- src/OR_Matrix_inlines.hh | 2 +- src/Octagonal_Shape_defs.hh | 14 +-- src/Octagonal_Shape_templates.hh | 8 +- src/PIP_Problem.cc | 36 +++---- src/PIP_Problem_templates.hh | 2 +- src/PIP_Tree.cc | 113 ++++++++++---------- src/Partially_Reduced_Product_defs.hh | 2 +- src/Pointset_Powerset_defs.hh | 2 +- src/Pointset_Powerset_templates.hh | 2 +- src/Polyhedron_defs.hh | 16 +-- src/Polyhedron_inlines.hh | 2 +- src/Polyhedron_nonpublic.cc | 4 +- src/Polyhedron_public.cc | 18 ++-- src/Polyhedron_simplify_templates.hh | 2 +- src/Polyhedron_widenings.cc | 6 +- src/Powerset_templates.hh | 2 +- src/Temp_inlines.hh | 4 +- src/Temp_templates.hh | 2 +- src/Threshold_Watcher_templates.hh | 2 +- src/Variable.cc | 2 +- src/Watchdog.cc | 6 +- src/Widening_Function_defs.hh | 4 +- src/checked_int_inlines.hh | 4 +- src/globals.cc | 4 +- src/globals_inlines.hh | 2 +- src/intervals_defs.hh | 2 +- src/ppl-config.cc.in | 62 +++++------ src/wrap_assign.hh | 10 +- tests/BD_Shape/cc76extrapolation1.cc | 2 +- tests/Box/refinewithconstraints2.cc | 12 +-- tests/MIP_Problem/mipproblem2.cc | 8 +- tests/PIP_Problem/pipproblem1.cc | 75 +++++++++----- tests/PIP_Problem/pipproblem2.cc | 6 +- tests/Polyhedron/memory2.cc | 11 +- tests/Polyhedron/watchdog1.cc | 4 +- tests/Polyhedron/wrap1.cc | 4 +- tests/Random_Number_Generator_inlines.hh | 2 +- tests/ppl_test.cc | 10 +- tests/ppl_test.hh | 16 +-- utils/text2cxxarray.in | 2 +- 94 files changed, 604 insertions(+), 569 deletions(-) Diff:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commitdiff;h=7138f859…
1
0
0
0
[GIT] ppl/ppl(devel): Obsolete configuration removed.
by Roberto Bagnara
06 Aug '20
06 Aug '20
Module: ppl/ppl Branch: devel Commit: 449b8f7cc66a6565adc7d1272848c6ccae36da48 URL:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=449b8f7cc66a…
Author: Roberto Bagnara <roberto.bagnara(a)bugseng.com> Date: Thu Jul 9 11:53:48 2020 +0200 Obsolete configuration removed. --- ECLAIR/analyze_BUGFIND.ecl | 2 -- 1 file changed, 2 deletions(-) diff --git a/ECLAIR/analyze_BUGFIND.ecl b/ECLAIR/analyze_BUGFIND.ecl index 1e09a2f35..8f615031a 100644 --- a/ECLAIR/analyze_BUGFIND.ecl +++ b/ECLAIR/analyze_BUGFIND.ecl @@ -8,8 +8,6 @@ -config=B.REPORT.ECB,preprocessed=show -config=B.REPORT.ECB,macros=10 --disable=B.REPORT.TXT - -enable=B.BUGFIND -reports={hide,all_exp_external}
1
0
0
0
[GIT] ppl/ppl(master): Add braces.
by Roberto Bagnara
05 Aug '20
05 Aug '20
Module: ppl/ppl Branch: master Commit: 71de0f2fc94ccf26026fe901a2ee574d71b686f0 URL:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=71de0f2fc94c…
Author: Roberto Bagnara <roberto.bagnara(a)bugseng.com> Date: Wed Aug 5 21:36:21 2020 +0200 Add braces. --- interfaces/C/ppl_c_implementation_common.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/interfaces/C/ppl_c_implementation_common.cc b/interfaces/C/ppl_c_implementation_common.cc index 4eee51add..fe95e8c8a 100644 --- a/interfaces/C/ppl_c_implementation_common.cc +++ b/interfaces/C/ppl_c_implementation_common.cc @@ -2555,8 +2555,9 @@ CATCH_ALL int ppl_io_print_variable(ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr || puts(f) < 0) + if (f == nullptr || puts(f) < 0) { return PPL_STDIO_ERROR; + } return 0; } CATCH_ALL @@ -2564,8 +2565,9 @@ CATCH_ALL int ppl_io_fprint_variable(FILE* stream, ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr || fputs(f, stream) < 0) + if (f == nullptr || fputs(f, stream) < 0) { return PPL_STDIO_ERROR; + } return 0; } CATCH_ALL @@ -2573,8 +2575,9 @@ CATCH_ALL int ppl_io_asprint_variable(char** strp, ppl_dimension_type var) try { const char* f = c_variable_output_function(var); - if (f == nullptr) + if (f == nullptr) { return PPL_STDIO_ERROR; + } *strp = strdup(f); if (*strp == nullptr) { return PPL_ERROR_OUT_OF_MEMORY;
1
0
0
0
[GIT] ppl/ppl(master): Use nullptr.
by Roberto Bagnara
05 Aug '20
05 Aug '20
Module: ppl/ppl Branch: master Commit: 7138f8598b4dbaa6c6198498518a42d2d926fa54 URL:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=7138f8598b4d…
Author: Roberto Bagnara <roberto.bagnara(a)bugseng.com> Date: Wed Aug 5 21:09:11 2020 +0200 Use nullptr. --- demos/ppl_lcdd/ppl_lcdd.cc | 36 +++---- demos/ppl_lpsol/ppl_lpsol.c | 9 +- demos/ppl_pips/ppl_pips.cc | 48 ++++----- interfaces/C/ppl_c_implementation_common.cc | 48 ++++----- interfaces/C/ppl_c_implementation_common_defs.hh | 3 +- interfaces/C/ppl_interface_generator_c_cc_code.m4 | 8 +- interfaces/C/tests/formatted_output.c | 6 +- interfaces/C/tests/ppl_c_test.cc | 2 +- ...ppl_interface_generator_java_classes_cc_code.m4 | 9 +- interfaces/Java/jni/ppl_java_common.cc | 114 ++++++++++----------- interfaces/Java/jni/ppl_java_common_defs.hh | 4 +- interfaces/Java/jni/ppl_java_globals.cc | 10 +- interfaces/OCaml/ppl_ocaml_common.cc | 12 +-- .../ppl_interface_generator_sicstus_sd_cc.m4 | 2 +- interfaces/Prolog/SWI/pl_clpq.cc | 4 +- .../SWI/ppl_interface_generator_swiprolog_cc.m4 | 2 +- .../ppl_interface_generator_prolog_cc_code.m4 | 8 +- interfaces/Prolog/ppl_prolog_common.cc | 23 +++-- src/Affine_Space_defs.hh | 4 +- src/Any_Pointset_defs.hh | 6 +- src/BD_Shape_defs.hh | 18 ++-- src/BD_Shape_templates.hh | 8 +- src/Box_defs.hh | 8 +- src/Box_templates.hh | 10 +- src/CO_Tree.cc | 14 +-- src/CO_Tree_defs.hh | 2 +- src/CO_Tree_inlines.hh | 4 +- src/Coefficient.cc | 16 +-- src/Congruence.cc | 16 +-- src/Congruence_System.cc | 8 +- src/Congruence_System_inlines.hh | 2 +- src/Constraint.cc | 36 +++---- src/Constraint_System.cc | 8 +- src/Constraint_System_inlines.hh | 2 +- src/DB_Row_inlines.hh | 6 +- src/Dense_Row.cc | 10 +- src/Dense_Row_defs.hh | 2 +- src/Dense_Row_inlines.hh | 14 +-- src/Float_inlines.hh | 2 +- src/Float_templates.hh | 4 +- src/Generator.cc | 18 ++-- src/Generator_System.cc | 8 +- src/Generator_System_inlines.hh | 2 +- src/Grid_Generator.cc | 10 +- src/Grid_Generator_System.cc | 8 +- src/Grid_defs.hh | 20 ++-- src/Grid_nonpublic.cc | 6 +- src/Grid_public.cc | 6 +- src/Grid_widenings.cc | 10 +- src/Handler_inlines.hh | 2 +- src/Init.cc | 6 +- src/Linear_Expression.cc | 8 +- src/Linear_Expression_defs.hh | 8 +- src/Linear_Expression_inlines.hh | 26 ++--- src/OR_Matrix_inlines.hh | 2 +- src/Octagonal_Shape_defs.hh | 14 +-- src/Octagonal_Shape_templates.hh | 8 +- src/PIP_Problem.cc | 36 +++---- src/PIP_Problem_templates.hh | 2 +- src/PIP_Tree.cc | 113 ++++++++++---------- src/Partially_Reduced_Product_defs.hh | 2 +- src/Pointset_Powerset_defs.hh | 2 +- src/Pointset_Powerset_templates.hh | 2 +- src/Polyhedron_defs.hh | 16 +-- src/Polyhedron_inlines.hh | 2 +- src/Polyhedron_nonpublic.cc | 4 +- src/Polyhedron_public.cc | 18 ++-- src/Polyhedron_simplify_templates.hh | 2 +- src/Polyhedron_widenings.cc | 6 +- src/Powerset_templates.hh | 2 +- src/Temp_inlines.hh | 4 +- src/Temp_templates.hh | 2 +- src/Threshold_Watcher_templates.hh | 2 +- src/Variable.cc | 2 +- src/Watchdog.cc | 6 +- src/Widening_Function_defs.hh | 4 +- src/checked_int_inlines.hh | 4 +- src/globals.cc | 4 +- src/globals_inlines.hh | 2 +- src/intervals_defs.hh | 2 +- src/ppl-config.cc.in | 62 +++++------ src/wrap_assign.hh | 10 +- tests/BD_Shape/cc76extrapolation1.cc | 2 +- tests/Box/refinewithconstraints2.cc | 12 +-- tests/MIP_Problem/mipproblem2.cc | 8 +- tests/PIP_Problem/pipproblem1.cc | 75 +++++++++----- tests/PIP_Problem/pipproblem2.cc | 6 +- tests/Polyhedron/memory2.cc | 11 +- tests/Polyhedron/watchdog1.cc | 4 +- tests/Polyhedron/wrap1.cc | 4 +- tests/Random_Number_Generator_inlines.hh | 2 +- tests/ppl_test.cc | 10 +- tests/ppl_test.hh | 16 +-- utils/text2cxxarray.in | 2 +- 94 files changed, 604 insertions(+), 569 deletions(-) Diff:
http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commitdiff;h=7138f859…
1
0
0
0
Credentials to login gitweb
by metab0t@outlook.com
05 Aug '20
05 Aug '20
When I want to view the gitweb of PPL
https://www.cs.unipr.it/git/gitweb.cgi
It requires username and password to enter. Is the credentials available in public, or setup by purpose? Thanks! metab0t(a)outlook.com
1
0
0
0
← Newer
1
2
3
Older →
Jump to page:
1
2
3
Results per page:
10
25
50
100
200