Skip to content

Commit

Permalink
reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhenyu2Liang committed Aug 23, 2023
1 parent 3861c27 commit 5d213dc
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/bige.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def calc_sh(fit_a, pr_a, fit_b, pr_b, r):

@jit_class
class BiGE(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/eagmoead.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def environmental_selection(fitness, n):

@jit_class
class EAGMOEAD(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/gde3.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

@jit_class
class GDE3(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/ibea.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def cal_fitness(pop_obj, kappa):

@jit_class
class IBEA(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/knea.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def calc_DW(fit, k):

@jit_class
class KnEA(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/moead.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

@jit_class
class MOEAD(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/moeaddra.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

@jit_class
class MOEADDRA(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/moeadm2m.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def false_fun(c):

@jit_class
class MOEADM2M(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/nsga3.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

@jit_class
class NSGA3(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/rvea.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

@jit_class
class RVEA(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/spea2.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def body_fun(vals):

@jit_class
class SPEA2(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/sra.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ def in_body(j, d):

@jit_class
class SRA(Algorithm):

def __init__(
self,
lb,
Expand Down
1 change: 0 additions & 1 deletion src/evox/algorithms/mo/tdea.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def environmental_selection(pop, obj, w, n, z, z_nad):

@jit_class
class TDEA(Algorithm):

def __init__(
self,
lb,
Expand Down

0 comments on commit 5d213dc

Please sign in to comment.