Skip to content

Commit

Permalink
Java: Consider all summarized callable with generated verification as…
Browse files Browse the repository at this point in the history
… generated when counting generated vs manual.
  • Loading branch information
michaelnebel committed Oct 2, 2024
1 parent 104d448 commit 51623c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ private int getNumMadModeledApis(string package, string provenance, string apiSu
(
// "auto-only"
not sc.hasManualModel() and
sc.hasProvenance("df-generated") and
sc.hasGeneratedModel() and
provenance = "generated"
or
sc.hasManualModel() and
(
if sc.hasProvenance("df-generated")
if sc.hasGeneratedModel()
then
// "both"
provenance = "both"
Expand Down

0 comments on commit 51623c3

Please sign in to comment.