Commit 6f473f12 authored by gbalduzz's avatar gbalduzz
Browse files

Updated parameters wiki.

parent 8983ea65
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -302,7 +302,6 @@ private:
  double alpha_ndd_ = 1e-4;
  bool adjust_alpha_dd_ = false;
  double double_update_probability_ = 0;
  bool double_counted_interaction_ = true;
  int max_submatrix_size_ = 1;
};

+37 −1
Original line number Diff line number Diff line
@@ -499,6 +499,42 @@ Do additional time measurements.
        }
    }

### CT-AUX

**Group** `"CT-INT":`  
Used if *CT-INT* is selected as the cluster solver.

`"initial-configuration-size"` integer(0)  
Size of the initial random configuration (if a previous configuration is not read).   
`"alpha-dd-pos"` double(0.501)  
Strength of the alpha field. A random variable in {`alpha-dd-pos`, -`alpha-dd-pos`} is added to the 
diagonal of the D matrix to mitigate the sign problem. This parameter applies only to 
density-density interactions with positive coupling.   
`"alpha-dd-neg"` double(0.)  
Strength of the alpha field for interactions with negative coupling.  
`"adjust-alpha-dd"` double(1e-4)  
If true, the value of G0(0+) is added to `alpha-dd-pos`.  
`adjust_alpha-dd"` boolean(false)  
Strength of the alpha field for non-density-density interactions.  
`"double-update-probability"` double(0.)  
Probability to propose a double vertex insertion/removal.  
`"max-submatrix-size"` integer(1)  
Maximum number of vertices inserted/removed in a single submatrix update.  

#### Example

    {
        "CT-INT": {
            "initial-configuration-size": 1000,
            "alpha-dd-pos": 0.1,
            "alpha-dd-neg": 0,
            "alpha-ndd" : 0.01,
            "adjust-alpha-dd" : true,
            "double-update-probability" : 0,
            "max-submatrix-size": 128,
        }
    }

### CT-HYB

**Group** `"SS-CT-HYB":`  
+10 −0
Original line number Diff line number Diff line
@@ -124,6 +124,16 @@
        "additional-time-measurements": false
    },

    "CT-INT": {
        "initial-configuration-size": 10,
        "alpha-dd-pos": 0.1,
        "alpha-dd-neg": 0,
        "alpha-ndd" : 0.01,
        "adjust-alpha-dd" : true,
        "double-update-probability" : 0,
        "max-submatrix-size": 128
    },

    "SS-CT-HYB": {
        "self-energy-tail-cutoff": 0,
        "steps-per-sweep": 0.5,