Пример #1
0
def gene_alg(avaliable_sol,
             fix,
             nDAY,
             nW,
             nEMPLOYEE,
             gen,
             year,
             month,
             per_month_dir='./data/per_month/',
             AssignTest='',
             NeedTest='',
             EmployeeTest=''):  #avaliavle_sol 可行解列表 fix 不能移動的列表
    i_nb = []

    for p in range(len(avaliable_sol)):
        #i_nb.append(np.vectorize({v: k for k, v in K_type_dict.items()}.get)(np.array(avaliable_sol[p])).tolist())
        i_nb.append(avaliable_sol[p])

    score_liz = []
    for i, j in zip(i_nb, fix):
        score_liz.append((i, j,
                          score(i,
                                nDAY,
                                nW,
                                year=year,
                                month=month,
                                per_month_dir=per_month_dir,
                                AssignTest=AssignTest,
                                NeedTest=NeedTest,
                                EmployeeTest=EmployeeTest)))
    # for i in range(gen):    #重複親代數量那麼多次
    #     score_liz = alg(score_liz, nDAY,nW, nEMPLOYEE,year,month)
    score_liz = alg(score_liz,
                    nDAY,
                    nW,
                    nEMPLOYEE,
                    year,
                    month,
                    per_month_dir=per_month_dir,
                    AssignTest=AssignTest,
                    NeedTest=NeedTest,
                    EmployeeTest=EmployeeTest)
    #上面是為求跑得完而做的修改
    result = np.vectorize(K_type_dict.get)(score_liz[0][0])
    print('\n\n基因演算法最佳解:', score_liz[0][2])
    return result
Пример #2
0
 df_x = pd.DataFrame(which_worktime, index = employee_name, columns = DATES)   #字串班表
 df_x1 = pd.DataFrame(which_worktime2, index = employee_name, columns = DATES) #整數班表
 df_x2 = which_worktime2                                                       #confirm用
 
 #print(df_x)
 #=================================================================================================#
 #確認解是否可行
 #=================================================================================================#
 message = 'All constraints are met.'
 message = confirm(df_x2, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER, SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR, Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL, DAYset, VACnextdayset, NOT_VACnextdayset)
     
 
 #====================================================================================================#
 #計算目標式
 #====================================================================================================#
 result = score(df_x1,nDAY,nW,year=year,month=month,per_month_dir=dir_name+'per_month/',AssignTest=AssignTest,NeedTest=NeedTest,EmployeeTest=EmployeeTest)
 """
 sumlack = 0
 for j in range(nDAY):
     for t in range(nT):
         sumlack += lack[j, t]
 
 sumbreak = 0
 for i in EMPLOYEE:
     for w in WEEK:
          for r in BREAK:
             if breakCount[i,w,r] == True:
                 sumbreak += 1
 
 result2 = P0 * sumlack + P1 * surplus + P2 * nightCount + P3 * sumbreak
 print(result2, sumlack, surplus, nightCount, sumbreak)
Пример #3
0
def alg(score_liz,
        nDAY,
        nW,
        nEMPLOYEE,
        year,
        month,
        per_month_dir='./data/per_month/',
        AssignTest='',
        NeedTest='',
        EmployeeTest=''):
    sort = sorted(score_liz, key=lambda s: s[2], reverse=True)
    for i in range(len(score_liz)):
        print('\n\n   alg() #### i =', i, '#### range =', len(score_liz))
        for j in range(len(score_liz)):
            if i != j:
                print(j, end=' ')
                union = np.logical_or(score_liz[i][1], score_liz[j][1])
                one_not_avb = union * score_liz[i][0]
                one_avb = score_liz[i][0] - one_not_avb
                two_not_avb = union * score_liz[j][0]
                two_avb = score_liz[j][0] - two_not_avb
                #隨機決定切分點
                sp_row = random.randint(0, nDAY - 1)
                sp_col = random.randint(0, nEMPLOYEE - 1)
                #第一組:依據員工、日期切分
                one_col_left = one_avb[:sp_col]
                one_col_right = one_avb[sp_col:]
                one_row_up = one_avb.T[:sp_row].T
                one_row_down = one_avb.T[sp_row:].T
                #第二組:的切分
                two_col_left = two_avb[:sp_col]
                two_col_right = two_avb[sp_col:]
                two_row_up = two_avb.T[:sp_row].T
                two_row_down = two_avb.T[sp_row:].T
                #將對應的一、二組片段重新組合
                a_one_one_two = np.concatenate(
                    (one_row_up, two_row_down), axis=1) + one_not_avb
                a_two_one_two = np.concatenate(
                    (one_row_up, two_row_down), axis=1) + two_not_avb
                a_one_two_one = np.concatenate(
                    (two_row_up, one_row_down), axis=1) + one_not_avb
                a_two_two_one = np.concatenate(
                    (two_row_up, one_row_down), axis=1) + two_not_avb
                b_one_one_two = np.concatenate(
                    (one_col_left, two_col_right), axis=0) + one_not_avb
                b_two_one_two = np.concatenate(
                    (one_col_left, two_col_right), axis=0) + two_not_avb
                b_one_two_one = np.concatenate(
                    (two_col_left, one_col_right), axis=0) + one_not_avb
                b_two_two_one = np.concatenate(
                    (two_col_left, one_col_right), axis=0) + two_not_avb
                sort.append((a_one_one_two, score_liz[i][1],
                             score(a_one_one_two.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((a_two_one_two, score_liz[j][1],
                             score(a_two_one_two.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((a_one_two_one, score_liz[i][1],
                             score(a_one_two_one.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((a_two_two_one, score_liz[j][1],
                             score(a_two_two_one.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((b_one_one_two, score_liz[i][1],
                             score(b_one_one_two.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((b_two_one_two, score_liz[j][1],
                             score(b_two_one_two.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((b_one_two_one, score_liz[i][1],
                             score(b_one_two_one.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
                sort.append((b_two_two_one, score_liz[j][1],
                             score(b_two_two_one.tolist(),
                                   nDAY,
                                   nW,
                                   year=year,
                                   month=month,
                                   per_month_dir=per_month_dir,
                                   AssignTest=AssignTest,
                                   NeedTest=NeedTest,
                                   EmployeeTest=EmployeeTest)))
    # sort = sorted(sort, key = lambda s: s[2],reverse = True)
    sort = sorted(sort, key=lambda s: s[2])
    sort = sort[:100]
    return sort
Пример #4
0
def alg(score_liz,
        nDAY,
        nW,
        nEMPLOYEE,
        year,
        month,
        ASSIGN,
        S_NIGHT,
        D_WEEK,
        nightdaylimit,
        LOWER,
        SHIFTset,
        E_POSITION,
        UPPER,
        PERCENT,
        E_SENIOR,
        Upper_shift,
        NOTPHONE_CLASS,
        NOTPHONE_CLASS_special,
        E_SKILL,
        DAYset,
        VACnextdayset,
        NOT_VACnextdayset,
        per_month_dir='./data/per_month/',
        AssignTest='',
        NeedTest='',
        EmployeeTest=''):
    sort = sorted(score_liz, key=lambda s: s[2])  #親代排名
    new = np.copy(sort[:int(len(score_liz) / 3)])  #取出前1/3
    num_list = list(range(len(new)))
    random.shuffle(num_list)
    #print(num_list[0],num_list[1], end=' ')

    union = np.logical_or(new[num_list[0]][1], new[num_list[1]][1])
    one_not_avb = union * new[num_list[0]][0]
    one_avb = new[num_list[0]][0] - one_not_avb
    two_not_avb = union * new[num_list[1]][0]
    two_avb = new[num_list[1]][0] - two_not_avb
    one_org = np.array(new[num_list[0]][0])  #沒有fix的班表
    two_org = np.array(new[num_list[1]][0])

    #隨機決定切分點
    sp_row = random.randint(0, nDAY - 1)
    sp_col = random.randint(0, nEMPLOYEE - 1)

    #第一組:依據員工、日期切分
    one_col_left = one_avb[:sp_col]
    one_col_right = one_avb[sp_col:]
    one_row_up = one_avb.T[:sp_row].T
    one_row_down = one_avb.T[sp_row:].T
    one_org_col_left = one_org[:sp_col]
    one_org_col_right = one_org[sp_col:]
    one_org_row_up = one_org.T[:sp_row].T
    one_org_row_down = one_org.T[sp_row:].T

    #第二組:的切分
    two_col_left = two_avb[:sp_col]
    two_col_right = two_avb[sp_col:]
    two_row_up = two_avb.T[:sp_row].T
    two_row_down = two_avb.T[sp_row:].T
    two_org_col_left = two_org[:sp_col]
    two_org_col_right = two_org[sp_col:]
    two_org_row_up = two_org.T[:sp_row].T
    two_org_row_down = two_org.T[sp_row:].T

    #將對應的一、二組片段重新組合
    #上下黏合
    a_one_one_two = np.concatenate(
        (one_row_up, two_row_down), axis=1) + one_not_avb
    a_two_one_two = np.concatenate(
        (one_row_up, two_row_down), axis=1) + two_not_avb
    a_one_two_one = np.concatenate(
        (two_row_up, one_row_down), axis=1) + one_not_avb
    a_two_two_one = np.concatenate(
        (two_row_up, one_row_down), axis=1) + two_not_avb
    a_org_one_two = np.concatenate((one_org_row_up, two_org_row_down), axis=1)
    a_org_two_one = np.concatenate((two_org_row_up, one_org_row_down), axis=1)

    #左右黏合
    b_one_one_two = np.concatenate(
        (one_col_left, two_col_right), axis=0) + one_not_avb
    b_two_one_two = np.concatenate(
        (one_col_left, two_col_right), axis=0) + two_not_avb
    b_one_two_one = np.concatenate(
        (two_col_left, one_col_right), axis=0) + one_not_avb
    b_two_two_one = np.concatenate(
        (two_col_left, one_col_right), axis=0) + two_not_avb
    b_org_one_two = np.concatenate((one_org_col_left, two_org_col_right),
                                   axis=0)
    b_org_two_one = np.concatenate((two_org_col_left, one_org_col_right),
                                   axis=0)

    #突變
    if random.randint(0, 19) == 0:
        a_one_one_two[random.randint(
            0, a_one_one_two.shape[0] - 1)][random.randint(
                0, a_one_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        a_two_one_two[random.randint(
            0, a_two_one_two.shape[0] - 1)][random.randint(
                0, a_two_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        a_one_two_one[random.randint(
            0, a_one_two_one.shape[0] - 1)][random.randint(
                0, a_one_two_one.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        a_two_two_one[random.randint(
            0, a_two_two_one.shape[0] - 1)][random.randint(
                0, a_two_two_one.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        a_org_one_two[random.randint(
            0, a_org_one_two.shape[0] - 1)][random.randint(
                0, a_org_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        a_org_two_one[random.randint(
            0, a_org_two_one.shape[0] - 1)][random.randint(
                0, a_org_two_one.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_one_one_two[random.randint(
            0, b_one_one_two.shape[0] - 1)][random.randint(
                0, b_one_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_two_one_two[random.randint(
            0, b_two_one_two.shape[0] - 1)][random.randint(
                0, b_two_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_one_two_one[random.randint(
            0, b_one_two_one.shape[0] - 1)][random.randint(
                0, b_one_two_one.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_two_two_one[random.randint(
            0, b_two_two_one.shape[0] - 1)][random.randint(
                0, b_two_two_one.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_org_one_two[random.randint(
            0, b_org_one_two.shape[0] - 1)][random.randint(
                0, b_org_one_two.shape[1] - 1)] = random.randint(0, 18)
    if random.randint(0, 19) == 0:
        b_org_two_one[random.randint(
            0, b_org_two_one.shape[0] - 1)][random.randint(
                0, b_org_two_one.shape[1] - 1)] = random.randint(0, 18)

    #print(np.zeros(a_org_one_two.shape))
    #判斷是否符合
    if confirm(a_one_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_one_one_two, new[num_list[0]][1],
                     score(a_one_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(a_two_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_two_one_two, new[num_list[1]][1],
                     score(a_two_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(a_one_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_one_two_one, new[num_list[0]][1],
                     score(a_one_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(a_two_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_two_two_one, new[num_list[1]][1],
                     score(a_two_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(a_org_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_org_one_two, np.zeros(a_org_one_two.shape),
                     score(a_org_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(a_org_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((a_org_two_one, np.zeros(a_org_two_one.shape),
                     score(a_org_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_one_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_one_one_two, new[num_list[0]][1],
                     score(b_one_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_two_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_two_one_two, new[num_list[1]][1],
                     score(b_two_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_one_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_one_two_one, new[num_list[0]][1],
                     score(b_one_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_two_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_two_two_one, new[num_list[1]][1],
                     score(b_two_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_org_one_two, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_org_one_two, np.zeros(b_org_one_two.shape),
                     score(b_org_one_two.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    if confirm(b_org_two_one, ASSIGN, S_NIGHT, D_WEEK, nightdaylimit, LOWER,
               SHIFTset, E_POSITION, UPPER, DAYset, PERCENT, E_SENIOR,
               Upper_shift, NOTPHONE_CLASS, NOTPHONE_CLASS_special, E_SKILL,
               DAYset, VACnextdayset,
               NOT_VACnextdayset) == 'All constraints are met.':
        sort.append((b_org_two_one, np.zeros(b_org_two_one.shape),
                     score(b_org_two_one.tolist(),
                           nDAY,
                           nW,
                           year=year,
                           month=month,
                           per_month_dir=per_month_dir,
                           AssignTest=AssignTest,
                           NeedTest=NeedTest,
                           EmployeeTest=EmployeeTest)))

    # sort = sorted(sort, key = lambda s: s[2],reverse = True)
    sort = sorted(sort, key=lambda s: s[2])
    #print(len(sort))
    sort = sort[:len(score_liz)]
    #print(sort)
    #print(len(sort))
    print('本世代最佳分數:', sort[0][2])
    return sort
Пример #5
0
def gene_alg(avaliable_sol,
             fix,
             nDAY,
             nW,
             nEMPLOYEE,
             gen,
             year,
             month,
             ASSIGN,
             S_NIGHT,
             D_WEEK,
             nightdaylimit,
             LOWER,
             SHIFTset,
             E_POSITION,
             UPPER,
             PERCENT,
             E_SENIOR,
             Upper_shift,
             NOTPHONE_CLASS,
             NOTPHONE_CLASS_special,
             E_SKILL,
             DAYset,
             VACnextdayset,
             NOT_VACnextdayset,
             per_month_dir='./data/per_month/',
             AssignTest='',
             NeedTest='',
             EmployeeTest=''):  #avaliavle_sol 可行解列表 fix 不能移動的列表
    i_nb = []

    for p in range(len(avaliable_sol)):
        #i_nb.append(np.vectorize({v: k for k, v in K_type_dict.items()}.get)(np.array(avaliable_sol[p])).tolist())
        i_nb.append(avaliable_sol[p])

    score_liz = []

    for i, j in zip(i_nb, fix):
        score_liz.append((i, j,
                          score(i,
                                nDAY,
                                nW,
                                year=year,
                                month=month,
                                per_month_dir=per_month_dir,
                                AssignTest=AssignTest,
                                NeedTest=NeedTest,
                                EmployeeTest=EmployeeTest)))

    for i in range(gen):  #重複親代數量那麼多次
        score_liz = alg(score_liz,
                        nDAY,
                        nW,
                        nEMPLOYEE,
                        year,
                        month,
                        ASSIGN,
                        S_NIGHT,
                        D_WEEK,
                        nightdaylimit,
                        LOWER,
                        SHIFTset,
                        E_POSITION,
                        UPPER,
                        PERCENT,
                        E_SENIOR,
                        Upper_shift,
                        NOTPHONE_CLASS,
                        NOTPHONE_CLASS_special,
                        E_SKILL,
                        DAYset,
                        VACnextdayset,
                        NOT_VACnextdayset,
                        per_month_dir=per_month_dir,
                        AssignTest=AssignTest,
                        NeedTest=NeedTest,
                        EmployeeTest=EmployeeTest)

    result = np.vectorize(K_type_dict.get)(score_liz[0][0])
    print('\n\n基因演算法最佳解:', score_liz[0][2])
    return result