Skip to content

Commit

Permalink
Deployed a3aef85 with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yfzcsc committed Jun 4, 2024
1 parent 657e0e8 commit e4d0368
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ <h1 id="wing">Wing</h1>

<!--
MkDocs version : 1.5.3
Build Date UTC : 2024-06-04 19:37:00.089106+00:00
Build Date UTC : 2024-06-04 19:39:24.217365+00:00
-->
4 changes: 2 additions & 2 deletions p2/part3/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ <h2 id="modified-seqscanvecexecutor">Modified SeqScanVecExecutor</h2>
predicate_.Evaluate(tuple, result); /* Get result */
/* If the tuple passes the predicate */
if (result == 1) {
if (bit_vector_index_ &gt; bit_vector_.size() || bit_vector_[bit_vector_index_] == 1) {
if (bit_vector_index_ &gt;= bit_vector_.size() || bit_vector_[bit_vector_index_] == 1) {
/* append the current tuple to result */
}
/* increment the indexx in bit vector */
Expand Down Expand Up @@ -195,7 +195,7 @@ <h2 id="ptupdater">PtUpdater</h2>
}
if (index &gt;= bit_vector.size()) {
/* resize the bit vector */
bit_vector.resize(bit_vector.size() * 2 + 10);
bit_vector.Resize(bit_vector.size() * 2 + 10);
break;
}
break;
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit e4d0368

Please sign in to comment.