Skip to content

Commit

Permalink
update theme to pydata
Browse files Browse the repository at this point in the history
  • Loading branch information
srbhp committed Dec 5, 2024
1 parent 0eecd7a commit b156fe4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
runs-on: ubuntu-20.04 # ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages
- name: Requirements
run:
sudo apt-get update
Expand All @@ -63,7 +63,7 @@ jobs:
# source /opt/intel/oneapi/setvars.sh
# && cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact
with:
# Upload entire repository
# path: './build/docs/sphinx'
Expand Down
5 changes: 2 additions & 3 deletions examples/twoChannelSiam/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ int main() {
int nMax{40}; // Number of NRG iteration
double U_int = 0.20;
double GAMMA = 0.0100;
double fc = 0.5 * std::log(LAMBDA) * (1. + LAMBDA) / (LAMBDA - 1.);
double V = std::sqrt(2.0 * fc * GAMMA / std::acos(-1.));
std::sqrt(2.0 * GAMMA / std::acos(-1.));
double fc = 0.5 * std::log(LAMBDA) * (1. + LAMBDA) / (LAMBDA - 1.);
double V = std::sqrt(2.0 * fc * GAMMA / std::acos(-1.));
double eps = -U_int * 0.50;
spinhalf impurity(eps, U_int);
// Enlarge the no of fermion on the impurity
Expand Down

0 comments on commit b156fe4

Please sign in to comment.