version 1.31, 2009/02/23 05:51:23 |
version 1.33, 2009/05/16 03:13:07 |
|
|
%% $OpenXM: OpenXM/src/asir-doc/exp/exp-ja.texi,v 1.30 2009/02/23 04:00:53 takayama Exp $ |
%% $OpenXM: OpenXM/src/asir-doc/exp/exp-ja.texi,v 1.32 2009/02/23 06:10:42 noro Exp $ |
\input texinfo |
\input texinfo |
@iftex |
@iftex |
@catcode`@#=6 |
@catcode`@#=6 |
Line 239 $\partial_0, \partial_1, \cdots$ |
|
Line 239 $\partial_0, \partial_1, \cdots$ |
|
dp_dvars_origin: dp_vars_hweyl $B$,(B 1 $B$N;~$N%$%s%G%C%/%9$N;O$^$j$NCM(B. |
dp_dvars_origin: dp_vars_hweyl $B$,(B 1 $B$N;~$N%$%s%G%C%/%9$N;O$^$j$NCM(B. |
@item |
@item |
conv_func: $B%f!<%6Dj5A$NJQ494X?t$r$h$V(B. |
conv_func: $B%f!<%6Dj5A$NJQ494X?t$r$h$V(B. |
@item |
|
|
|
@end itemize |
@end itemize |
|
|
@comment --- @example$B!A(B@end example $B$O<B9TNc$NI=<((B --- |
@comment --- @example$B!A(B@end example $B$O<B9TNc$NI=<((B --- |
Line 491 Sugar strategy $B$rE,MQ$9$k$H$-$N(B weight vector. |
|
Line 489 Sugar strategy $B$rE,MQ$9$k$H$-$N(B weight vector. |
|
@comment ~taka/this03/misc-2003/A2/dp |
@comment ~taka/this03/misc-2003/A2/dp |
@item $B=g=x(B order $B$O<!$NJ8K!$GDj5A$9$k(B. @{, @} $B$O(B 0 $B2s0J>e$N7+$jJV$7$r0UL#$9$k(B. |
@item $B=g=x(B order $B$O<!$NJ8K!$GDj5A$9$k(B. @{, @} $B$O(B 0 $B2s0J>e$N7+$jJV$7$r0UL#$9$k(B. |
@example |
@example |
order : '[' orderElement { ',' orderElement } ']' |
order : '[' orderElement @{ ',' orderElement @} ']' |
orderElement : weightVec | builtinOrder |
orderElement : weightVec | builtinOrder |
weightVec : '[' weightElement { ',' weightElement } ']' |
weightVec : '[' weightElement @{ ',' weightElement @} ']' |
builtiniOrder : '[' orderName ',' setOfVariables ']' |
builtiniOrder : '[' orderName ',' setOfVariables ']' |
weightElement : NUMBER | setOfVariables ',' NUMBER |
weightElement : NUMBER | setOfVariables ',' NUMBER |
setOfVariables: V | range(V,V) |
setOfVariables: V | range(V,V) |
|
|
@end itemize |
@end itemize |
|
|
@example |
@example |
[219] struct point { x, y, color}; |
[219] struct point @{ x, y, color@}; |
[220] P = newstruct(point); |
[220] P = newstruct(point); |
{0,0,0} |
@{0,0,0@} |
[221] P->x = 10$ P->y=5$ P->color="red"$ |
[221] P->x = 10$ P->y=5$ P->color="red"$ |
[222] get_element_names(P); |
[222] get_element_names(P); |
[x,y,color] |
[x,y,color] |
|
|
@end itemize |
@end itemize |
|
|
@example |
@example |
[219] def my_output(F) { |
[219] def my_output(F) @{ |
print("Out: ",0); print(rtostr(F)); |
print("Out: ",0); print(rtostr(F)); |
} |
@} |
[220] set_print_function("my_output"); |
[220] set_print_function("my_output"); |
Out: 0 |
Out: 0 |
[221] 1+2; |
[221] 1+2; |
Line 1855 qt_normalize(`x^2,2); |
|
Line 1853 qt_normalize(`x^2,2); |
|
@noindent |
@noindent |
ChangeLog |
ChangeLog |
@itemize @bullet |
@itemize @bullet |
@item |
@item -----$B$^$@=q$$$F$J$$(B. |
@end itemize |
@end itemize |
|
|
|
|
Line 2020 qt_normalize(quote( 1+(x+y)+(x+y)^2),1); |
|
Line 2018 qt_normalize(quote( 1+(x+y)+(x+y)^2),1); |
|
@noindent |
@noindent |
ChangeLog |
ChangeLog |
@itemize @bullet |
@itemize @bullet |
@item |
@item -----$B$^$@=q$$$F$J$$(B. |
@end itemize |
@end itemize |
|
|
|
|
Line 2242 qt $B7O$N4X?t$,3+H/$5$l$?(B. |
|
Line 2240 qt $B7O$N4X?t$,3+H/$5$l$?(B. |
|
@end itemize |
@end itemize |
|
|
@example |
@example |
// Visual C++ $BMQ$N%F%9%H%W%m%0%i%`(B. $BI8=`F~NO$r(B asirgui $B$XAw$j9~$`(B. |
// cl test.c user32.lib |
// test.cpp : $B%3%s%=!<%k(B $B%"%W%j%1!<%7%g%sMQ$N%(%s%H%j(B $B%]%$%s%H$NDj5A(B |
|
// |
|
|
|
#include "stdafx.h" |
|
#include "test.h" |
|
#include <windows.h> |
#include <windows.h> |
#include <stdlib.h> |
#include <stdlib.h> |
#include <stdio.h> |
#include <stdio.h> |
#include <fcntl.h> |
|
#include <process.h> |
#include <process.h> |
|
|
#ifdef _DEBUG |
int main() |
#define new DEBUG_NEW |
@{ |
#undef THIS_FILE |
|
static char THIS_FILE[] = __FILE__; |
|
#endif |
|
|
|
///////////////////////////////////////////////////////////////////////////// |
|
// $BM#0l$N%"%W%j%1!<%7%g%s(B $B%*%V%8%'%/%H(B |
|
|
|
CWinApp theApp; |
|
|
|
using namespace std; |
|
|
|
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) |
|
{ |
|
int nRetCode = 0; |
|
|
|
// MFC $B$N=i4|2=$*$h$S=i4|2=<:GT;~$N%(%i!<$N=PNO(B |
|
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0)) |
|
{ |
|
// TODO: $BI,MW$K1~$8$F%(%i!<(B $B%3!<%I$rJQ99$7$F$/$@$5$$!#(B |
|
cerr << _T("Fatal Error: MFC initialization failed") << endl; |
|
nRetCode = 1; |
|
} |
|
else |
|
{ |
|
// TODO: $B$3$N0LCV$K%"%W%j%1!<%7%g%s$NF0:n$r5-=R$7$F$/$@$5$$!#(B |
|
CString strHello; |
|
strHello.LoadString(IDS_HELLO); |
|
cout << (LPCTSTR)strHello << endl; |
|
} |
|
HWND hnd; |
HWND hnd; |
FILE *fp = fopen("c:/Program Files/asir/bin/asirgui.hnd","r"); |
FILE *fp = fopen("c:/Program Files/asir/bin/asirgui.hnd","r"); |
fscanf(fp,"%d",&hnd); |
fscanf(fp,"%d",&hnd); |
fclose(fp); |
fclose(fp); |
while (1) { |
while (1) @{ |
int c; |
int c; |
c = getchar(); |
c = getchar(); |
if ( c == '#' ) break; |
if ( c == '#' ) break; |
PostMessage(hnd,WM_CHAR,c,1); |
PostMessage(hnd,WM_CHAR,c,1); |
} |
@} |
return nRetCode; |
return 0; |
} |
@} |
@end example |
@end example |
|
|
@table @t |
@table @t |
Line 2522 $I = D \cdot \{x \partial_x -1, y \partial_y - 1\} $ |
|
Line 2487 $I = D \cdot \{x \partial_x -1, y \partial_y - 1\} $ |
|
-- generic_bfct_and_gr :0.001sec(0.001629sec) |
-- generic_bfct_and_gr :0.001sec(0.001629sec) |
generic bfct : [[1,1],[s-1,1]] |
generic bfct : [[1,1],[s-1,1]] |
S0 : 1 |
S0 : 1 |
B_{S0} length : 2 |
B_@{S0@} length : 2 |
-- fctr(BF) + base :0.000999sec(0.0005109sec) |
-- fctr(BF) + base :0.000999sec(0.0005109sec) |
[[y*dy-1,(y*dy-1)*dx,-1],[[1],[0]]] |
[[y*dy-1,(y*dy-1)*dx,-1],[[1],[0]]] |
[1433] |
[1433] |
Line 2573 $I = D \cdot \{x \partial_x -1, y \partial_y - 1\} $ |
|
Line 2538 $I = D \cdot \{x \partial_x -1, y \partial_y - 1\} $ |
|
-- generic_bfct_and_gr :0.002sec(0.001652sec) |
-- generic_bfct_and_gr :0.002sec(0.001652sec) |
generic bfct : [[1,1],[s-1,1]] |
generic bfct : [[1,1],[s-1,1]] |
S0 : 1 |
S0 : 1 |
B_{S0} length : 2 |
B_@{S0@} length : 2 |
-- fctr(BF) + base :0sec(0.000566sec) |
-- fctr(BF) + base :0sec(0.000566sec) |
-- restriction_ideal_internal :0.001sec(0.0007441sec) |
-- restriction_ideal_internal :0.001sec(0.0007441sec) |
[-1] |
[-1] |
Line 2629 $I = D \cdot \{2 t \partial_x + \partial_t, t \partial |
|
Line 2594 $I = D \cdot \{2 t \partial_x + \partial_t, t \partial |
|
-- generic_bfct_and_gr :0.001sec(0.001796sec) |
-- generic_bfct_and_gr :0.001sec(0.001796sec) |
generic bfct : [[1,1],[s,1],[s-1,1]] |
generic bfct : [[1,1],[s,1],[s-1,1]] |
S0 : 1 |
S0 : 1 |
B_{S0} length : 2 |
B_@{S0@} length : 2 |
-- fctr(BF) + base :0.001sec(0.0006731sec) |
-- fctr(BF) + base :0.001sec(0.0006731sec) |
[[4*x*dx^2+6*dx,-4*t*x*dx^2-6*t*dx,2*x*dx+1,-2*t*x*dx,2*t*dx],[[1],[0]]] |
[[4*x*dx^2+6*dx,-4*t*x*dx^2-6*t*dx,2*x*dx+1,-2*t*x*dx,2*t*dx],[[1],[0]]] |
@end example |
@end example |
Line 2675 x,y $B$K$D$$$F@QJ,$r9T$&!#(B |
|
Line 2640 x,y $B$K$D$$$F@QJ,$r9T$&!#(B |
|
$I = D \cdot \{2 t \partial_x + \partial_t, t \partial_t + 2 x \partial_x + 2\} $ |
$I = D \cdot \{2 t \partial_x + \partial_t, t \partial_t + 2 x \partial_x + 2\} $ |
@end tex |
@end tex |
$B$N(B |
$B$N(B |
@tex $t$ @end tex |
@tex $t$ |
|
@end tex |
$B$K$D$$$F$N@QJ,%$%G%"%k$r7W;;$7$?Nc$G$"$k!#(B([SST, Ex5.5.2, Ex5.5.6]) |
$B$K$D$$$F$N@QJ,%$%G%"%k$r7W;;$7$?Nc$G$"$k!#(B([SST, Ex5.5.2, Ex5.5.6]) |
@example |
@example |
[1431] nk_restriction.integration_ideal([2*t*dx+dt,t*dt+2*x*dx+2],[t,x], |
[1431] nk_restriction.integration_ideal([2*t*dx+dt,t*dt+2*x*dx+2],[t,x], |
Line 2683 $I = D \cdot \{2 t \partial_x + \partial_t, t \partial |
|
Line 2649 $I = D \cdot \{2 t \partial_x + \partial_t, t \partial |
|
-- generic_bfct_and_gr :0.002999sec(0.002623sec) |
-- generic_bfct_and_gr :0.002999sec(0.002623sec) |
generic bfct : [[1,1],[s,1],[s-1,1]] |
generic bfct : [[1,1],[s,1],[s-1,1]] |
S0 : 1 |
S0 : 1 |
B_{S0} length : 2 |
B_@{S0@} length : 2 |
-- fctr(BF) + base :0.001sec(0.001091sec) |
-- fctr(BF) + base :0.001sec(0.001091sec) |
-- integration_ideal_internal :0.002sec(0.001879sec) |
-- integration_ideal_internal :0.002sec(0.001879sec) |
[2*x*dx+1] |
[2*x*dx+1] |