Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
398c4ec9
Commit
398c4ec9
authored
Dec 27, 2016
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates to delay optimization project.
parent
ac3216cf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
253 additions
and
47 deletions
+253
-47
src/opt/sbd/sbdCore.c
+133
-23
src/opt/sbd/sbdInt.h
+1
-0
src/opt/sbd/sbdLut.c
+84
-24
src/opt/sbd/sbdWin.c
+35
-0
No files found.
src/opt/sbd/sbdCore.c
View file @
398c4ec9
...
@@ -777,13 +777,13 @@ void Sbd_ManPrintObj( Sbd_Man_t * p, int Pivot )
...
@@ -777,13 +777,13 @@ void Sbd_ManPrintObj( Sbd_Man_t * p, int Pivot )
}
}
}
}
void
Sbd_ManMatrPrint
(
word
Cover
[
64
],
int
nCol
,
int
nRows
)
void
Sbd_ManMatrPrint
(
Sbd_Man_t
*
p
,
word
Cover
[
],
int
nCol
,
int
nRows
)
{
{
int
i
,
k
;
int
i
,
k
;
for
(
i
=
0
;
i
<=
nCol
;
i
++
)
for
(
i
=
0
;
i
<=
nCol
;
i
++
)
{
{
printf
(
"%2d : "
,
i
);
printf
(
"%2d : "
,
i
);
for
(
k
=
0
;
k
<
nRows
;
k
++
)
printf
(
"%d "
,
i
==
nCol
?
Vec_IntEntry
(
p
->
vLutLevs
,
p
->
Pivot
)
:
Vec_IntEntry
(
p
->
vLutLevs
,
Vec_IntEntry
(
p
->
vWinObjs
,
Vec_IntEntry
(
p
->
vDivVars
,
i
)))
);
for
(
k
=
0
;
k
<
nRows
;
k
++
)
for
(
k
=
0
;
k
<
nRows
;
k
++
)
printf
(
"%d"
,
(
int
)((
Cover
[
i
]
>>
k
)
&
1
)
);
printf
(
"%d"
,
(
int
)((
Cover
[
i
]
>>
k
)
&
1
)
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
@@ -801,18 +801,18 @@ static inline void Sbd_ManCoverReverseOrder( word Cover[64] )
...
@@ -801,18 +801,18 @@ static inline void Sbd_ManCoverReverseOrder( word Cover[64] )
}
}
}
}
static
inline
int
Sbd_ManAddCube1
(
word
Cover
[
64
],
int
nRows
,
word
Cube
)
static
inline
int
Sbd_ManAddCube1
(
int
nRowLimit
,
word
Cover
[
],
int
nRows
,
word
Cube
)
{
{
int
n
,
m
;
int
n
,
m
;
if
(
0
)
if
(
0
)
{
{
printf
(
"Adding cube: "
);
printf
(
"Adding cube: "
);
for
(
n
=
0
;
n
<
64
;
n
++
)
for
(
n
=
0
;
n
<
nRowLimit
;
n
++
)
printf
(
"%d"
,
(
int
)((
Cube
>>
n
)
&
1
)
);
printf
(
"%d"
,
(
int
)((
Cube
>>
n
)
&
1
)
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
}
}
// do not add contained Cube
// do not add contained Cube
assert
(
nRows
<=
64
);
assert
(
nRows
<=
nRowLimit
);
for
(
n
=
0
;
n
<
nRows
;
n
++
)
for
(
n
=
0
;
n
<
nRows
;
n
++
)
if
(
(
Cover
[
n
]
&
Cube
)
==
Cover
[
n
]
)
// Cube is contained
if
(
(
Cover
[
n
]
&
Cube
)
==
Cover
[
n
]
)
// Cube is contained
return
nRows
;
return
nRows
;
...
@@ -820,7 +820,7 @@ static inline int Sbd_ManAddCube1( word Cover[64], int nRows, word Cube )
...
@@ -820,7 +820,7 @@ static inline int Sbd_ManAddCube1( word Cover[64], int nRows, word Cube )
for
(
n
=
m
=
0
;
n
<
nRows
;
n
++
)
for
(
n
=
m
=
0
;
n
<
nRows
;
n
++
)
if
(
(
Cover
[
n
]
&
Cube
)
!=
Cube
)
// Cover[n] is not contained
if
(
(
Cover
[
n
]
&
Cube
)
!=
Cube
)
// Cover[n] is not contained
Cover
[
m
++
]
=
Cover
[
n
];
Cover
[
m
++
]
=
Cover
[
n
];
if
(
m
<
64
)
if
(
m
<
nRowLimit
)
Cover
[
m
++
]
=
Cube
;
Cover
[
m
++
]
=
Cube
;
for
(
n
=
m
;
n
<
nRows
;
n
++
)
for
(
n
=
m
;
n
<
nRows
;
n
++
)
Cover
[
n
]
=
0
;
Cover
[
n
]
=
0
;
...
@@ -855,7 +855,7 @@ static inline int Sbd_ManAddCube2( word Cover[2][64], int nRows, word Cube[2] )
...
@@ -855,7 +855,7 @@ static inline int Sbd_ManAddCube2( word Cover[2][64], int nRows, word Cube[2] )
return
nRows
;
return
nRows
;
}
}
static
inline
int
Sbd_ManFindCandsSimple
(
Sbd_Man_t
*
p
,
word
Cover
[
64
],
int
nDivs
)
static
inline
int
Sbd_ManFindCandsSimple
(
Sbd_Man_t
*
p
,
word
Cover
[],
int
nDivs
)
{
{
int
c0
,
c1
,
c2
,
c3
;
int
c0
,
c1
,
c2
,
c3
;
word
Target
=
Cover
[
nDivs
];
word
Target
=
Cover
[
nDivs
];
...
@@ -1052,7 +1052,7 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
...
@@ -1052,7 +1052,7 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
{
{
Cube
=
(
Cubes
[
0
][
1
][
i
]
&
Cubes
[
1
][
0
][
k
])
|
(
Cubes
[
0
][
0
][
i
]
&
Cubes
[
1
][
1
][
k
]);
Cube
=
(
Cubes
[
0
][
1
][
i
]
&
Cubes
[
1
][
0
][
k
])
|
(
Cubes
[
0
][
0
][
i
]
&
Cubes
[
1
][
1
][
k
]);
assert
(
Cube
);
assert
(
Cube
);
nRows
=
Sbd_ManAddCube1
(
Cover
,
nRows
,
Cube
);
nRows
=
Sbd_ManAddCube1
(
64
,
Cover
,
nRows
,
Cube
);
}
}
Sbd_ManCoverReverseOrder
(
Cover
);
Sbd_ManCoverReverseOrder
(
Cover
);
...
@@ -1072,7 +1072,7 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
...
@@ -1072,7 +1072,7 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
for
(
nIters
=
0
;
nIters
<
nItersMax
&&
nRows
<
64
;
nIters
++
)
for
(
nIters
=
0
;
nIters
<
nItersMax
&&
nRows
<
64
;
nIters
++
)
{
{
if
(
p
->
pPars
->
fVerbose
)
if
(
p
->
pPars
->
fVerbose
)
Sbd_ManMatrPrint
(
Cover
,
nDivs
,
nRows
);
Sbd_ManMatrPrint
(
p
,
Cover
,
nDivs
,
nRows
);
clk
=
Abc_Clock
();
clk
=
Abc_Clock
();
if
(
!
Sbd_ManFindCands
(
p
,
Cover
,
nDivs
)
)
if
(
!
Sbd_ManFindCands
(
p
,
Cover
,
nDivs
)
)
...
@@ -1141,10 +1141,123 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
...
@@ -1141,10 +1141,123 @@ int Sbd_ManExplore( Sbd_Man_t * p, int Pivot, word * pTruth )
return
RetValue
;
return
RetValue
;
}
}
int
Sbd_ManExplore2
(
Sbd_Man_t
*
p
,
int
Pivot
,
int
Sbd_ManExplore2
(
Sbd_Man_t
*
p
,
int
Pivot
,
word
*
pTruth
)
int
nLuts
,
int
nSels
,
int
nVarsDivs
[
SBD_LUTS_MAX
],
int
pVarsDivs
[
SBD_LUTS_MAX
][
SBD_SIZE_MAX
],
word
Truths
[
SBD_LUTS_MAX
]
)
{
{
extern
sat_solver
*
Sbd_ManSatSolver
(
sat_solver
*
pSat
,
Gia_Man_t
*
p
,
Vec_Int_t
*
vMirrors
,
int
Pivot
,
Vec_Int_t
*
vWinObjs
,
Vec_Int_t
*
vObj2Var
,
Vec_Int_t
*
vTfo
,
Vec_Int_t
*
vRoots
,
int
fQbf
);
extern
int
Sbd_ManCollectConstantsNew
(
sat_solver
*
pSat
,
Vec_Int_t
*
vDivVars
,
int
nConsts
,
int
PivotVar
,
word
*
pOnset
,
word
*
pOffset
);
abctime
clk
=
Abc_Clock
();
word
Onset
[
64
]
=
{
0
},
Offset
[
64
]
=
{
0
},
Cube
;
word
CoverRows
[
256
]
=
{
0
},
CoverCols
[
64
]
=
{{
0
}};
int
nIters
,
nItersMax
=
32
;
int
i
,
k
,
nRows
=
0
;
int
PivotVar
=
Vec_IntEntry
(
p
->
vObj2Var
,
Pivot
);
int
FreeVar
=
Vec_IntSize
(
p
->
vWinObjs
)
+
Vec_IntSize
(
p
->
vTfo
)
+
Vec_IntSize
(
p
->
vRoots
);
int
nDivs
=
Vec_IntSize
(
p
->
vDivVars
);
int
nConsts
=
4
;
int
RetValue
;
if
(
p
->
pSat
)
sat_solver_delete
(
p
->
pSat
);
p
->
pSat
=
NULL
;
p
->
pSat
=
Sbd_ManSatSolver
(
p
->
pSat
,
p
->
pGia
,
p
->
vMirrors
,
Pivot
,
p
->
vWinObjs
,
p
->
vObj2Var
,
p
->
vTfo
,
p
->
vRoots
,
0
);
p
->
timeCnf
+=
Abc_Clock
()
-
clk
;
assert
(
nConsts
<=
8
);
RetValue
=
Sbd_ManCollectConstantsNew
(
p
->
pSat
,
p
->
vDivVars
,
nConsts
,
PivotVar
,
Onset
,
Offset
);
if
(
RetValue
>=
0
)
{
if
(
p
->
pPars
->
fVerbose
)
printf
(
"Found stuck-at-%d node %d.
\n
"
,
RetValue
,
Pivot
);
Vec_IntWriteEntry
(
p
->
vLutLevs
,
Pivot
,
0
);
p
->
nConsts
++
;
return
RetValue
;
}
// create rows of the table
nRows
=
0
;
for
(
i
=
0
;
i
<
nConsts
;
i
++
)
for
(
k
=
0
;
k
<
nConsts
;
k
++
)
{
Cube
=
Onset
[
i
]
^
Offset
[
k
];
assert
(
Cube
);
nRows
=
Sbd_ManAddCube1
(
256
,
CoverRows
,
nRows
,
Cube
);
}
assert
(
nRows
<=
64
);
// create columns of the table
for
(
i
=
0
;
i
<
nRows
;
i
++
)
for
(
k
=
0
;
k
<=
nDivs
;
k
++
)
if
(
(
CoverRows
[
i
]
>>
k
)
&
1
)
Abc_TtXorBit
(
&
CoverCols
[
k
],
i
);
// solve the covering problem
for
(
nIters
=
0
;
nIters
<
nItersMax
&&
nRows
<
64
;
nIters
++
)
{
if
(
p
->
pPars
->
fVerbose
)
Sbd_ManMatrPrint
(
p
,
CoverCols
,
nDivs
,
nRows
);
clk
=
Abc_Clock
();
if
(
!
Sbd_ManFindCands
(
p
,
CoverCols
,
nDivs
)
)
{
if
(
p
->
pPars
->
fVerbose
)
printf
(
"Cannot find a feasible cover.
\n
"
);
//clkEnu += Abc_Clock() - clk;
//clkAll = Abc_Clock() - clkAll - clkSat - clkEnu;
//p->timeSat += clkSat;
//p->timeCov += clkAll;
//p->timeEnu += clkEnu;
return
0
;
}
//clkEnu += Abc_Clock() - clk;
if
(
p
->
pPars
->
fVerbose
)
printf
(
"Candidate support: "
),
Vec_IntPrint
(
p
->
vDivSet
);
clk
=
Abc_Clock
();
*
pTruth
=
Sbd_ManSolve
(
p
->
pSat
,
PivotVar
,
FreeVar
+
nIters
,
p
->
vDivSet
,
p
->
vDivVars
,
p
->
vDivValues
,
p
->
vLits
);
//clkSat += Abc_Clock() - clk;
if
(
*
pTruth
==
SBD_SAT_UNDEC
)
printf
(
"Node %d: Undecided.
\n
"
,
Pivot
);
else
if
(
*
pTruth
==
SBD_SAT_SAT
)
{
if
(
p
->
pPars
->
fVerbose
)
{
int
i
;
printf
(
"Node %d: SAT.
\n
"
,
Pivot
);
for
(
i
=
0
;
i
<
nDivs
;
i
++
)
printf
(
"%d"
,
Vec_IntEntry
(
p
->
vLutLevs
,
Vec_IntEntry
(
p
->
vWinObjs
,
Vec_IntEntry
(
p
->
vDivVars
,
i
)))
);
printf
(
"
\n
"
);
for
(
i
=
0
;
i
<
nDivs
;
i
++
)
printf
(
"%d"
,
i
%
10
);
printf
(
"
\n
"
);
for
(
i
=
0
;
i
<
nDivs
;
i
++
)
printf
(
"%c"
,
(
Vec_IntEntry
(
p
->
vDivValues
,
i
)
&
0x4
)
?
'0'
+
(
Vec_IntEntry
(
p
->
vDivValues
,
i
)
&
1
)
:
'x'
);
printf
(
"
\n
"
);
for
(
i
=
0
;
i
<
nDivs
;
i
++
)
printf
(
"%c"
,
(
Vec_IntEntry
(
p
->
vDivValues
,
i
)
&
0x8
)
?
'0'
+
((
Vec_IntEntry
(
p
->
vDivValues
,
i
)
>>
1
)
&
1
)
:
'x'
);
printf
(
"
\n
"
);
}
// add row to the covering table
for
(
i
=
0
;
i
<
nDivs
;
i
++
)
if
(
Vec_IntEntry
(
p
->
vDivValues
,
i
)
==
0xE
||
Vec_IntEntry
(
p
->
vDivValues
,
i
)
==
0xD
)
CoverCols
[
i
]
|=
((
word
)
1
<<
nRows
);
CoverCols
[
nDivs
]
|=
((
word
)
1
<<
nRows
);
nRows
++
;
}
else
{
if
(
p
->
pPars
->
fVerbose
)
{
printf
(
"Node %d: UNSAT. "
,
Pivot
);
Extra_PrintBinary
(
stdout
,
(
unsigned
*
)
pTruth
,
1
<<
Vec_IntSize
(
p
->
vDivSet
)
),
printf
(
"
\n
"
);
}
return
1
;
}
}
return
0
;
return
0
;
}
}
...
@@ -1465,7 +1578,7 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
...
@@ -1465,7 +1578,7 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
if
(
Sbd_ManMergeCuts
(
p
,
Pivot
)
)
if
(
Sbd_ManMergeCuts
(
p
,
Pivot
)
)
return
;
return
;
// if ( Pivot !=
13
)
// if ( Pivot !=
70
)
// return;
// return;
if
(
p
->
pPars
->
fVerbose
)
if
(
p
->
pPars
->
fVerbose
)
...
@@ -1481,7 +1594,7 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
...
@@ -1481,7 +1594,7 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
Vec_IntWriteEntry
(
p
->
vMirrors
,
Pivot
,
RetValue
);
Vec_IntWriteEntry
(
p
->
vMirrors
,
Pivot
,
RetValue
);
//printf( " --> Pivot %4d. Constant %d.\n", Pivot, RetValue );
//printf( " --> Pivot %4d. Constant %d.\n", Pivot, RetValue );
}
}
else
if
(
Sbd_ManExplore
(
p
,
Pivot
,
&
Truth
)
)
else
if
(
Sbd_ManExplore
2
(
p
,
Pivot
,
&
Truth
)
)
{
{
Sbd_ManImplement
(
p
,
Pivot
,
Truth
);
Sbd_ManImplement
(
p
,
Pivot
,
Truth
);
//printf( " --> Pivot %4d. Supp %d.\n", Pivot, Vec_IntSize(p->vDivSet) );
//printf( " --> Pivot %4d. Supp %d.\n", Pivot, Vec_IntSize(p->vDivSet) );
...
@@ -1493,26 +1606,23 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
...
@@ -1493,26 +1606,23 @@ void Sbd_NtkPerformOne( Sbd_Man_t * p, int Pivot )
Gia_Man_t * p, Vec_Int_t * vMirrors,
Gia_Man_t * p, Vec_Int_t * vMirrors,
int Pivot, Vec_Int_t * vWinObjs, Vec_Int_t * vObj2Var,
int Pivot, Vec_Int_t * vWinObjs, Vec_Int_t * vObj2Var,
Vec_Int_t * vTfo, Vec_Int_t * vRoots,
Vec_Int_t * vTfo, Vec_Int_t * vRoots,
Vec_Int_t * vDivSet, int nStrs, Sbd_Str_t * pStr0
, word Truths[SBD_LUTS_MAX]
Vec_Int_t * vDivSet, int nStrs, Sbd_Str_t * pStr0
);
);
Sbd_Str_t Strs[2] = {
// Sbd_Str_t Strs[2] = { {1, 4, {0, 1, 2, 8}}, {1, 4, {3, 4, 5, 6}} };
{1, 4, {0, 1, 2, 7}},
// Sbd_Str_t Strs[2] = { {1, 4, {1, 4, 5, 7}}, {1, 4, {0, 1, 2, 3}} };
{1, 4, {3, 4, 5, 6}}
Sbd_Str_t Strs[3] = { {1, 4, {8, 4, 5, 7}}, {1, 4, {0, 1, 2, 3}}, {0, 4, {0, 1, 2, 3}} };
};
word Truths[SBD_LUTS_MAX];
Vec_Int_t * vDivSet = Vec_IntAlloc( 8 );
Vec_Int_t * vDivSet = Vec_IntAlloc( 8 );
int i, RetValue;
int i, RetValue;
for ( i = 0; i <
7
; i++ )
for ( i = 0; i <
6
; i++ )
Vec_IntPush( vDivSet, i+1 );
Vec_IntPush( vDivSet, i+1 );
RetValue = Sbd_ProblemSolve( p->pGia, p->vMirrors,
RetValue = Sbd_ProblemSolve( p->pGia, p->vMirrors,
Pivot, p->vWinObjs, p->vObj2Var, p->vTfo, p->vRoots,
Pivot, p->vWinObjs, p->vObj2Var, p->vTfo, p->vRoots,
vDivSet,
2, Strs, Truth
s );
vDivSet,
3, Str
s );
if ( RetValue )
if ( RetValue )
{
{
printf( "Solving succeded.\n" );
printf( "Solving succeded.\n" );
...
...
src/opt/sbd/sbdInt.h
View file @
398c4ec9
...
@@ -66,6 +66,7 @@ struct Sbd_Str_t_
...
@@ -66,6 +66,7 @@ struct Sbd_Str_t_
int
fLut
;
// LUT or SEL
int
fLut
;
// LUT or SEL
int
nVarIns
;
// input count
int
nVarIns
;
// input count
int
VarIns
[
SBD_DIV_MAX
];
// input vars
int
VarIns
[
SBD_DIV_MAX
];
// input vars
word
Res
;
// result of solving
};
};
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
...
src/opt/sbd/sbdLut.c
View file @
398c4ec9
This diff is collapsed.
Click to expand it.
src/opt/sbd/sbdWin.c
View file @
398c4ec9
...
@@ -141,6 +141,17 @@ sat_solver * Sbd_ManSatSolver( sat_solver * pSat, Gia_Man_t * p, Vec_Int_t * vMi
...
@@ -141,6 +141,17 @@ sat_solver * Sbd_ManSatSolver( sat_solver * pSat, Gia_Man_t * p, Vec_Int_t * vMi
}
}
assert
(
sat_solver_nvars
(
pSat
)
==
nVars
+
nAddVars
);
assert
(
sat_solver_nvars
(
pSat
)
==
nVars
+
nAddVars
);
}
}
else
if
(
fQbf
)
{
int
n
,
pLits
[
2
];
for
(
n
=
0
;
n
<
2
;
n
++
)
{
pLits
[
0
]
=
Abc_Var2Lit
(
PivotVar
,
n
);
pLits
[
1
]
=
Abc_Var2Lit
(
LastVar
,
n
);
RetValue
=
sat_solver_addclause
(
pSat
,
pLits
,
pLits
+
2
);
assert
(
RetValue
);
}
}
// finalize
// finalize
RetValue
=
sat_solver_simplify
(
pSat
);
RetValue
=
sat_solver_simplify
(
pSat
);
if
(
RetValue
==
0
)
if
(
RetValue
==
0
)
...
@@ -418,6 +429,30 @@ int Sbd_ManCollectConstants( sat_solver * pSat, int nCareMints[2], int PivotVar,
...
@@ -418,6 +429,30 @@ int Sbd_ManCollectConstants( sat_solver * pSat, int nCareMints[2], int PivotVar,
return
-
1
;
return
-
1
;
}
}
int
Sbd_ManCollectConstantsNew
(
sat_solver
*
pSat
,
Vec_Int_t
*
vDivVars
,
int
nConsts
,
int
PivotVar
,
word
*
pOnset
,
word
*
pOffset
)
{
int
nBTLimit
=
0
;
int
n
,
i
,
k
,
status
,
iLit
,
iVar
;
word
*
pPats
[
2
]
=
{
pOnset
,
pOffset
};
assert
(
Vec_IntSize
(
vDivVars
)
<
64
);
for
(
n
=
0
;
n
<
2
;
n
++
)
for
(
i
=
0
;
i
<
nConsts
;
i
++
)
{
sat_solver_random_polarity
(
pSat
);
iLit
=
Abc_Var2Lit
(
PivotVar
,
n
);
status
=
sat_solver_solve
(
pSat
,
&
iLit
,
&
iLit
+
1
,
nBTLimit
,
0
,
0
,
0
);
if
(
status
==
l_Undef
)
return
-
2
;
if
(
status
==
l_False
)
return
n
;
pPats
[
n
][
i
]
=
((
word
)
!
n
)
<<
Vec_IntSize
(
vDivVars
);
Vec_IntForEachEntry
(
vDivVars
,
iVar
,
k
)
if
(
sat_solver_var_value
(
pSat
,
iVar
)
)
Abc_TtXorBit
(
&
pPats
[
n
][
i
],
k
);
}
return
-
1
;
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment