feat: keyword parser (#23) #24

Merged
张泊明518370910136 merged 2 commits from keyword into master 2024-04-28 03:52:07 +08:00
4 changed files with 7 additions and 2 deletions
Showing only changes of commit 83085ed38a - Show all commits

4
.gitmodules vendored
View File

@ -18,3 +18,7 @@
path = examples/dummy/error
url = ssh://git@focs.ji.sjtu.edu.cn:2222/FOCS-dev/JOJ3-examples.git
branch = dummy/error
[submodule "examples/keyword/sillycode"]
path = examples/keyword/sillycode
url = ssh://git@focs.ji.sjtu.edu.cn:2222/FOCS-dev/JOJ3-examples.git
branch = keyword/sillycode

@ -1 +1 @@
Subproject commit e6504575379ef49c1495dc635f7aba36f57dddc8
Subproject commit a7001564a22f9807119efb7b8f4cf6f74d4c12fc

@ -0,0 +1 @@
Subproject commit 09cfdedda32061a03b4335e9a0f162c7891301c9

View File

@ -42,7 +42,7 @@ func Parse(executorResult stage.ExecutorResult, conf Conf) (
}
}
return stage.ParserResult{
Score: min(score, conf.MinScore),
Score: max(score, conf.MinScore),
Comment: comment,
}, matched
}