Adds __mul__
and __rmul__
methods to SparseHamiltonian
#39020
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formatting check | |
on: | |
- pull_request | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: pip install black | |
- uses: actions/checkout@v2 | |
- name: Run Black | |
run: | | |
black -l 100 pennylane/ --check | |
black -l 100 tests/ --check |