Skip to content

Commit 365efa3

Browse files
authored
Add nla survey (#38)
* feat: Add NLA Survey Application Added comprehensive NLA (Numerical Linear Algebra) survey functionality: - Created survey infrastructure with TypeScript types and data structures - Implemented main survey sections: * NLA Operations with detailed subsections * Benchmarking Requirements with operation-specific details - Added interactive features: * Collapsible sections * Conditional rendering based on selections * Hierarchical question structure - Included data files for all NLA operations: * Matrix operations (GEMM, inversion) * Eigenvalue problems (standard, generalized) * Factorizations (Cholesky, QR) * Linear solvers and polynomial filtering - Enhanced UI/UX: * Proper bullet point hierarchy * Clear section descriptions * Responsive design * Modern styling with Tailwind CSS * fix: Add checkbox for Symmetric/Hermitian A, SPD B section Added isSelectable property to enable left checkbox for the Symmetric/Hermitian A, SPD B section under Generalized Eigenvalue Problems.
1 parent 27010bc commit 365efa3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

app/survey/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export const surveyData: SurveySection[] = [
6565
id: 'gen-symmetric-hermitian',
6666
title: 'Symmetric/Hermitian A, SPD B',
6767
type: 'section',
68+
isSelectable: true,
6869
children: generalizedSymmetricData[0].questions
6970
}
7071
]

0 commit comments

Comments
 (0)