?? propagate.c
字號:
#include "global.h"
void propagate()
{
/* definition of e_i/** 6 2 5 * 3 0 1* 7 4 8*/
/* the only trick here is to have loop directions antiparallel to the lattice vectors */ register int x,y;
for(y=max_y-1;y>=0;y--)
{++)
{
f[6][y][x]=f[6][y-1][x+1];
}
}
for(y=0;y<max_y-1;y++)
{
for(x=max_x-1;x>0;x--)
{
f[8][y][x]=f[8][y+1][x-1];
}
for(x=0;x<max_x-1;x++)
{
f[7][y][x]=f[7][y+1][x+1];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -