aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-26 04:56:07 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-26 05:02:54 +0000
commitbb5d173399d657453533cf1bdda584203a1d096e (patch)
treec1726ab6428d04f9ee3a62ca41be84430d9486de /project
parenteb984bd431af209dbdc8bad8ee52435ccb89f5d0 (diff)
All the referee points have been answered
There is an answer for all the referee points now. I also did some minor edits in the paper. But we are still over the limit by around 250 words. The only remaining point that is not yet addressed (and has '####' around it) is the discussion on parallelization and its effect on reproducibility.
Diffstat (limited to 'project')
-rwxr-xr-xproject4
1 files changed, 2 insertions, 2 deletions
diff --git a/project b/project
index 93c55e7..cdace62 100755
--- a/project
+++ b/project
@@ -505,9 +505,9 @@ case $operation in
if [ -f paper.pdf ]; then
if type pdftotext > /dev/null 2>/dev/null; then
numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w)
- numeff=$(echo $numwords | awk '{print $1-850}')
+ numeff=$(echo $numwords | awk '{print $1-850+500}')
echo; echo "Number of words in full PDF: $numwords"
- echo "No abstract, and figure captions: $numeff"
+ echo "No abstract, and captions (250 for each figure): $numeff"
rm paper.txt
fi
fi