burst$cell_type.java

来自「是一个用于java的插件,在eclipse环境中,可实现可视化」· Java 代码 · 共 42 行

JAVA
42
字号
// Decompiled by Jad v1.5.7f. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   Burst.java

package edu.drexel.cis.citespace.burst;


// Referenced classes of package edu.drexel.cis.citespace.burst:
//            Burst

class cell_type
{

    double cost[];
    double total[];
    int prev[];
    int path;
    int min_rate_class;
    int candidate[];
    int end_candidate[];
    int mark[];
    int breakpt[];
    int subordinate[];
    double power[];
    double total_power[];

    public cell_type()
    {
        cost = new double[20];
        total = new double[20];
        prev = new int[20];
        candidate = new int[20];
        end_candidate = new int[20];
        mark = new int[20];
        breakpt = new int[20];
        subordinate = new int[20];
        power = new double[20];
        total_power = new double[20];
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?