Merge pull request #27 from ehw-fit/devel

Devel
This commit is contained in:
Jan Klhůfek 2024-10-03 12:39:02 +02:00 committed by GitHub
commit 63a11f244c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View File

@ -164,7 +164,7 @@ jobs:
name: documentation
path: html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: html/ariths_gen # The folder the action should deploy.

View File

@ -42,9 +42,15 @@ class UnsignedCGPCircuit(GeneralCircuit):
assert sum(
input_widths) == c_in, f"CGP input width {c_in} doesn't match input_widths {input_widths}"
def get_name(i):
if i < 26:
return chr(i + 0x61)
assert i < 26 * 26
return chr(i // 26 + 0x60) + chr(i % 26 + 0x61)
inputs = [Bus(N=bw, prefix=f"input_{chr(i)}")
for i, bw in enumerate(input_widths, start=0x61)]
inputs = [Bus(N=bw, prefix=f"input_{get_name(i)}")
for i, bw in enumerate(input_widths)]
# Assign each Bus object in self.inputs to a named attribute of self
for bus in inputs: