Skip to content

Commit 796dc54

Browse files
committed
Set transpiler default expand factor to 2
1 parent d0e4334 commit 796dc54

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Checkout sources
8686
# We need full history, because during CMake config stage we are finding the nearest tag
87-
uses: actions/checkout@v3
87+
uses: actions/checkout@v4
8888
with:
8989
fetch-depth: 0
9090
submodules: false
@@ -309,7 +309,7 @@ jobs:
309309
with:
310310
artifact-name: ${{ needs.build-and-test-linux.outputs.examples-artifact-name }}
311311
# Update next line if you need new version of proof producer
312-
proof-producer-ref: aa9619e52305c6a6a8e2797022da9d21c3962d08
312+
proof-producer-ref: 6ddb405173c4fbf466c4764a440cc81675a4f12a
313313
refs: ${{ needs.handle-syncwith.outputs.prs-refs }}
314314
targets: ${{ needs.build-and-test-linux.outputs.prover-targets }}
315315

bin/transpiler/src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ inline std::vector<std::size_t> generate_random_step_list(const std::size_t r, c
8282

8383
template<typename FRIScheme, typename FieldType>
8484
typename FRIScheme::params_type create_fri_params(
85-
std::size_t degree_log, const int max_step = 1, std::size_t expand_factor = 0) {
85+
std::size_t degree_log, const int max_step = 1, std::size_t expand_factor = 2) {
8686
std::size_t r = degree_log - 1;
8787

8888
return typename FRIScheme::params_type(
@@ -537,4 +537,4 @@ int curve_dependent_main(
537537
}
538538
return 0;
539539
}
540-
}
540+
}

0 commit comments

Comments
 (0)